* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
html,
body {
  height: 100%;
  width: 100%;
}
.header {
  width: 100%;
  height: 20%;
  background-color: #1b2534;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
}
.image{
  position: absolute;
  top: 23px;
  left: 160px;
  width: 100px;
  height: 100px;
  img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
}
.description{
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
  font-size: 3.5rem;
  color: #e4dede;
}
.description > p {
  color: #bab6b6;
  font-size: 1.1rem;
  font-style: italic;
}
main {
  margin: auto;
  background-color: #f5f6f9;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.main{
  width: 80%;
  margin-top: 25px;
  padding: 40px 70px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.043);

  h3 {
    color: rgba(0, 0, 0, 0.927);
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 700;
  }
}
.about {
    background-color: #f9fafd;

  h3 {
    color: rgba(0, 0, 0, 0.927);
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 700;
  }
  p {
    font-size: 1.2rem;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",sans-serif;
    color: #000000a7;
  }
}
.education{
    background-color: #DBF1FF;
    div {
        margin-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 1.1rem;
        gap: 10px;
    }
    p{
        cursor: pointer;
        background-color: #fffefe;
        width: 70%;
        border-radius: 5px;
        padding-block: 13px;
    };
}
.skills{
    background-color: #FFF1BE;
    p{
        text-transform: uppercase;
        font-weight: 600;
        color: #353535;
    }
}
.projects{
    background-color: #E9E6FD;
    p{
        font-style: italic;
        color: #000000d3;
    }
}
.contact{
    background-color: #D4F9E0;
    p {
    color: #000000d3;
  }
}
.footer{
    width: 100%;
    height: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1b2534;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #bab6b6;
}