* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #03243dea;
  background-image: url(./Recursos/svg/ondas.svg);
  background-size: 650%;
  background-position: center;
  transition: 0.5s;
}

.header:hover {
  background-image: url(./Recursos/svg/ondas.svg);
  background-size: 100%;
  background-position: top;
}

.menu-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menu-container ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menu-container ul li {
  margin: 15px;
  font-family: Comfortaa;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: whitesmoke;
}

ul li a:hover {
  color: #39e8c8;
}

.profile {
  height: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001220;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.profile-pic {
  height: 500px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: 0.5s;
}

.bio {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bio h1 {
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Comfortaa;
  font-size: 60px;
  color: #2bc0ca;
}

.bio h2 {
  margin-bottom: 30px;
  margin-left: 0px;
  padding-left: 0px;
  font-family: Comfortaa;
  font-size: 40px;
  color: whitesmoke;
}

.description {
  width: 100%;
  padding: 30px 0px 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url(./Recursos/svg/ondasprofile.svg);
  background-size: 125% auto;
  transition: 0.5s;
}

h3 {
  font-family: Satisfy;
  font-size: 35px;
  color: rgb(34, 33, 33);
}

p {
  width: 600px;
  margin-top: 10px;
  font-family: "Dosis", sans-serif;
  font-size: 22px;
  color: rgb(34, 33, 33);
}

.projects {
  padding: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  background-color: #e2e3ec;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  transition: 0.5s;
}

.projects-description {
  width: 100%;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.projects-title {
  font-family: Satisfy;
  color: rgb(34, 33, 33);
  font-size: 45px;
}

.projects-description p {
  margin-top: 5px;
  text-align: center;
  font-size: 25px;
}

.project {
  width: 500px;
  height: 350px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-image: url(./Recursos/svg/ondas.svg);
  background-size: 100% auto;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  font-family: Comfortaa;
  font-size: 25px;
  color: whitesmoke;
  cursor: pointer;
  transition: 0.5s;
}

.project:hover {
  background-size: 180% auto;
  color: whitesmoke;
}

.contact {
  height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(./Recursos/svg/ondas.svg);
  background-size: 150%;
  background-position: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.contact-title {
  width: 100%;
  margin-bottom: 10px;
  padding-left: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: Satisfy;
  color: whitesmoke;
  font-size: 40px;
}

.icons-container {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-icon {
  display: flex;
  margin: 10px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.contact-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon h6:hover {
  color: #39e8c8;
}

i {
  height: 18px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
}

h6 {
  font-family: "Dosis", sans-serif;
  font-size: 18px;
  color: whitesmoke;
}

@media only screen and (min-width: 963px) and (max-width: 1280px) {
  .menu-container ul li {
    font-size: 14px;
  }

  .profile-pic {
    height: 400px;
  }

  .bio h1 {
    font-size: 50px;
  }

  .bio h2 {
    font-size: 30px;
  }

  .description {
    padding: 30px 30px 30px 50px;
    background-size: 120% auto;
  }

  h3 {
    font-family: Satisfy;
    font-size: 30px;
  }

  p {
    width: 500px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 850px) and (max-width: 962px) {
  .header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-container ul li {
    font-size: 12px;
  }

  .profile-pic {
    height: 450px;
  }

  .bio h1 {
    font-size: 35px;
  }

  .bio h2 {
    font-size: 25px;
  }

  .description {
    padding: 30px 20px 30px 20px;
    background-size: 135% auto;
  }

  h3 {
    font-family: Satisfy;
    font-size: 25px;
  }

  p {
    width: 400px;
    font-size: 18px;
  }

  .projects-title {
    font-size: 35px;
  }

  .projects-description p {
    font-size: 20px;
  }

  .project {
    width: 450px;
    height: 300px;
  }
}

@media screen and (min-width: 350px) and (max-width: 849px) {
  .header {
    padding-right: 10px;
    padding-left: 10px;
    background-size: 700%;
  }

  .header:hover {
    background-size: 160%;
  }

  .menu-container ul li {
    font-size: 10px;
  }

  .profile {
    height: 750px;
    padding-top: 30px;
    padding-bottom: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .profile-pic {
    height: 250px;
    border-radius: 50%;
  }

  .bio {
    width: 100%;
    margin-top: 30px;
  }

  .bio h1 {
    margin-bottom: 15px;
    margin-left: 0px;
    font-size: 28px;
  }

  .bio h2 {
    margin-bottom: 30px;
    margin-left: 0px;
    padding-left: 0px;
    font-size: 18px;
  }

  .description {
    padding-left: 5px;
    justify-content: center;
    align-items: center;
    background-size: 140% auto;
  }

  h3 {
    width: 50%;
    padding-left: 0px;
    text-align: center;
    font-size: 22px;
  }

  p {
    width: 60%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
  }

  .projects {
    padding: 30px 10px 25px 10px;
  }

  .projects-description {
    margin-bottom: 15px;
  }

  .projects-title {
    font-size: 25px;
  }

  .projects-description p {
    margin-top: 5px;
    font-size: 18px;
  }

  .project {
    width: 400px;
    height: 250px;
    background-size: 125% auto;
    text-align: center;
    font-size: 14px;
  }

  .contact {
    height: 400px;
    padding: 25px;
    background-size: 300%;
  }

  .contact-title {
    padding-left: 0px;
    justify-content: center;
    font-size: 28px;
  }
}

@media only screen and (max-width: 349px) {
  .header {
    padding-right: 5px;
    padding-left: 5px;
    background-size: 750%;
  }

  .header:hover {
    background-size: 150%;
  }

  .menu-container ul li {
    margin: 10px;
    font-size: 9px;
  }

  .profile {
    height: 700px;
    padding-top: 30px;
    padding-bottom: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .profile-pic {
    height: 200px;
    border-radius: 50%;
  }

  .bio {
    width: 100%;
    margin-top: 30px;
  }

  .bio h1 {
    margin-bottom: 15px;
    margin-left: 0px;
    font-size: 22px;
  }

  .bio h2 {
    margin-bottom: 30px;
    margin-left: 0px;
    padding-left: 0px;
    font-size: 16px;
  }

  .description {
    padding-left: 5px;
    justify-content: center;
    align-items: center;
    background-size: 180% auto;
  }

  h3 {
    width: 50%;
    padding-left: 0px;
    text-align: center;
    font-size: 20px;
  }

  p {
    width: 70%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
  }

  .projects {
    padding: 20px 5px 20px 5px;
  }

  .projects-description {
    margin-bottom: 10px;
  }

  .projects-title {
    font-size: 20px;
  }

  .projects-description p {
    margin-top: 5px;
    font-size: 16px;
  }

  .project {
    width: 300px;
    height: 150px;
    background-size: 100% auto;
    text-align: center;
    font-size: 13px;
  }

  .contact {
    height: 350px;
    padding: 20px;
    background-size: 380%;
  }

  .contact-title {
    padding-left: 0px;
    justify-content: center;
    font-size: 25px;
  }
}
