* {
  box-sizing: border-box;
  /*   border: 1px solid black; */
}

p {
  font-size: 18px;
  font-family: 'Lato', sans-serif;
  text-align: left;
}

header {
  height: 8vh;
  width: 100vw;
  position: relative;
  background-color:rgba(209, 0, 116, 1);
  background-image: linear-gradient(109.6deg, rgba(209, 0, 116, 1) 11.2%, rgba(110, 44, 107, 1) 91.1%);
  display: flex;
  justify-content: space-between;
}

#logo>p>a {
  padding-left: 1vh;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.page {
  background-color: #fba8a4;
background-image: linear-gradient(315deg, #fba8a4 0%, #dad2f3 74%);
}


.profile-photo {
  background-image:url(../img/profile-photo.jpg);
  background-position: center;
  background-size: contain;
  background-repeat:no-repeat;
  /* width: 80vw; */
  height: 40vh;


}

.about {

  padding: 5px 25px;
  line-height: 1.8;
}


.about > h1 {

  margin: 0 auto;
  text-align: center;
  padding: 20px;


}

.about>ul {
   display: inline-block;
   text-align: left;
   margin-left: -15px;
   padding-left: 25px; 
   font-family: 'Lato', sans-serif;
   font-size: 18px;
}


footer {
  padding-top: 30px;
  color: black;
  margin-top: 0;
}

footer p {
    font-size: 12px;
}

footer>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.copyrigths {
  text-align: center;
  padding: 30px 30px 15px 30px;
  margin: 0;
}

/* Here is the style for Desktop version */
@media(min-width:600px) {

  header {
    position: fixed;
  }

  nav {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    color: white;
  }

  .desktop-menu {
    list-style: none;
    display: flex;
    gap: 8%;
    padding-right: 8vw;
  }

  .desktop-menu>li {
    font-size: 14px;
    margin: 0 20px;
    cursor: pointer;
  }

  .about>h1 {
margin-top: 80px;
  }

.about {
margin: 0 10vw;
}
}
