* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
}
/* ----------------------------------- */
/* FONT SIZE  */

.h1 {
  font-size: 40px;
}
.h2 {
  font-size: 28px;
}
/* ----------------------------------- */
.main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading {
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #162b45;
  padding-block: 70px;
  text-align: center;
  gap: 1rem;
}
.heading p {
  font-size: 18px;
  font-weight: bold;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  width: 800px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  border-radius: 8px;
  align-items: center;
}
.container h2 {
  margin-bottom: 1rem;
}
.education {
  background-color: #d9ecff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 12px;
  background-color: #fff;
  width: 600px;
  border-radius: 8px;
}
.skills {
  background-color: #ffeebc;
  gap: 0.5rem;
}
.projects {
  background-color: #e6dcfa;
  gap: 0.5rem;
}
.contact {
  background-color: #d4f7e5;
  gap: 0.5rem;
}
.footer {
  margin-top: 1rem;
  color: #fff;
  background-color: #162b45;
  padding-block: 20px;
  text-align: center;
  gap: 1rem;
}