* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  background: #fff;
  width: 100%;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
}
body::-webkit-scrollbar {
  display: none;
}
a {
  color: #343b45;
  text-decoration: none;
}
ul {
  list-style-type: none;
}

.wrapper {
  padding: 4rem 1.2rem 4.8rem 1.2rem;
  margin: auto;
  width: 85%;
}
.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.picture {
  height: 9rem;
  width: 9rem;
  border-radius: 100%;
  overflow: hidden;
}
.picture img {
  height: 9rem;
  width: 9rem;
}
.name {
  padding: 2rem 0;
  font-size: 2rem;
  letter-spacing: 1.5px;
  font-weight: bold;
  color: #00445a;
}

.info-top {
  position: relative;
  width: 100%;
  font-size: 1rem;
  line-height: 150%;
  margin: 1rem 0;
}

.info-top img {
  height: 1.8rem;
  align-items: center;
}

.info-top p {
  position: relative;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.info-box {
  width: 100%;
  text-align: center;
  background-color: #ffe6fd;
  border-radius: 0.5rem;
  border: 2px solid #343b45;
  margin-top: 2.6rem;
  padding: 1rem 0;
  height: 3.45rem;
  overflow: hidden;
  position: relative;
}

.info-box .toggle {
  padding: 0.94rem;
  width: 100%;
  height: 3.36rem;
  cursor: pointer;
  position: absolute;
  font-size: 1.3rem;
  top: 0;
  right: 0;
}
.info-box.active {
  height: auto;
  padding-bottom: 0;
  overflow: visible;
}

.info-box .toggle i {
  float: right;
  transition: 0.25s;
}

.info-box.active .toggle > i {
  transition: 0.25s;
  transform: rotate(-180deg);
}

.details {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 95%;
  margin: auto;
}
.details ul {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0;
  text-align: left;
}
.details ul li {
  color: #4b4c4f;
  padding: 0.8rem;
}

.details h3 {
  margin-bottom: 0.3rem;
}

.details b {
  color: #00445a;
  letter-spacing: 1.3px;
}
.details .about {
  line-height: 1.5rem;
}

.projects {
  width: 100%;
}

.project {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #0000001a;
  padding: 0;
  text-decoration: none;
}

.project i {
  font-size: 2rem;
  color: #a80603;
}

.project ul {
  list-style-type: none;
  line-height: 0.2rem;
  margin-top: 0.4rem;
  margin-left: 0.8rem;
}

.project ul li {
  word-wrap: break-word;
  color: #000;
}

.project ul li p {
  font-size: 0.9rem;
  font-weight: 600;
}

.project ul small {
  font-size: 0.8rem;
  color: #eaeaea;
}

.social-media {
  width: 100%;
}

.social-media div {
  width: 100%;
  margin: 1rem 0;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid #343b45;
  background-color: #ffe6fd;
  padding: 1rem 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.social-media div:hover {
  color: #ffffff;
  background-color: #343b45;
}

.share-container {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}

.share-container h3 {
  font-size: 1rem;
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}

.share-container ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.share-container img {
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
}

footer {
  width: 100%;
  display: flex;
  margin-top: 4rem;
  justify-content: center;
}

footer img {
  width: 12rem;
}

@media only screen and (min-width: 1000px) {
  .wrapper {
    width: 55%;
  }
}

@media only screen and (max-width: 767px) {
  .wrapper {
    padding: 2.8rem 1.2rem 3.6rem 1.2rem;
    width: 100%;
  }

  .name {
    font-size: 1.5rem;
    padding: 1.6rem 0 0.6rem 0;
  }

  h3 {
    font-size: 1rem;
  }
  .picture {
    height: 10rem;
    width: 10rem;
    border-radius: 100%;
    overflow: hidden;
  }
  .picture img {
    height: 10rem;
    width: 10rem;
  }

  .info-top {
    font-size: 0.8rem;
  }

  .info-top img {
    height: 1.4rem;
  }

  .info-box {
    margin-top: 1rem;
    height: 3.2rem;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
  }

  .info-box .toggle {
    padding: 1rem;
    height: 3.2rem;
    font-size: 1rem;
  }

  .details {
    width: 90%;
    font-size: 0.8rem;
  }

  .projects {
    width: 90%;
    margin-top: 0.4rem;
  }

  .project i {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a80603;
  }

  .project ul {
    margin-left: 0.5rem;
  }

  .project li p {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .social-media div {
    padding: 0.7rem 0;
    font-size: 1rem;
    gap: 0.3rem;
  }

  .share-container {
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
  }

  .share-container h3 {
    font-size: 0.9rem;
    margin-top: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .share-container ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .share-container img {
    width: 2rem;
    height: 2rem;
  }

  footer {
    width: 100%;
    display: flex;
    margin-top: 2.2rem;
    justify-content: center;
  }

  footer img {
    width: 10rem;
  }
}
