body {
  font-family: Georgia, serif;
  background-color: #ffc1cc;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.8;
}

h1,
h2,
h3 {
  font-family: arial, serif;
  text-transform: capitalize;
}

h1 {
  font-size: 60px;
  font-weight: bold;
  color: #222;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  color: #444;
  margin-top: 15px;
}

h3 {
  font-size: 30px;
  font-weight: bold;
  color: #555;
  margin-top: 10px;
}

ul,
ol {
  text-align: left;
  padding: 10px 20px;
}

ul li,
ol li {
  padding: 5px 0;
}

div {
  max-width: 800px;
  margin: 10px auto;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: justify;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  transition: color 0.3s;
}

a:hover {
  color: #0056b3;
}

img {
  border-radius: 10px;
  margin: 10px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

img:hover {
  transform: scale(1.1);
}

b {
  color: #222;
}

hr {
  border: 1px solid #ddd;
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table,
th,
td {
  border: 1px solid #ccc;
}

th,
td {
  padding: 10px;
  text-align: left;
}

td:nth-child(even) {
  background-color: #f9f9f9;
}

.testimonials,
.skills,
.courses,
.projects,
.gallery,
.contact {
  padding: 20px;
  background: #f1f1f1;
  margin: 20px auto;
  border-radius: 10px;
  width: 80%;
}

.testimonials p {
  font-style: italic;
  background: #f9f9f9;
  padding: 10px;
  border-left: 5px solid #ccc;
}

.skills p,
.courses p,
.projects p,
.contact p {
  font-size: 18px;
  font-style: italic;
}

.gallery p {
  font-size: 30px;
}

.projects a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  margin-top: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.projects a:hover {
  background-color: #0056b3;
}

.contact p {
  font-size: 16px;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.contact p:nth-child(odd) {
  background-color: #e0e0e0;
}

.button {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.button:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  div {
    width: 90%;
    padding: 10px;
  }
  img {
    width: 100%;
    height: auto;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  .button {
    padding: 8px 16px;
  }
}
