@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");



body {
  font-family: Inter, Arial;
  margin: 0;


}

article {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.banner-image-container {
  overflow: hidden;
  width: auto;
  height: 130px;
  margin: 3px 3px;

}

.banner-image {
  width: 100%;
  height: 400%;
}

.avatar-socials-container {
  border: 1px solid white;
  height: 50px;
  display: flex;
  justify-content: space-between;
}

.avatar-container {
  border: 3px solid white;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  left: -25px;
  top: -60px;
  overflow: hidden;
}

.avatar {
  width: 100%;
}

nav {
  border: 1px solid white;
  display: flex;
  margin: 0px 6px;
  margin-right: 40px;
  align-items: center;
  width: 110px;
  justify-content: space-between;
}

.x-logo {
  width: 30px;
}

.linkedin-logo {
  width: 30px;
  margin-left: 0;
}

.github-logo {
  width: 30px;
}

header {
  border: 1px solid white;
  margin-top: 10px;
}

h2 {
  margin-left: 15px;
  display: inline-block;
  font-size: 28px;
}

.user-role {
  display: inline-block;
  margin: 0;
  margin-left: 3px;
  font-size: 14px;
  color: rgb(78, 78, 78);
}

.bio {
  border: 1px solid white;
  padding: 0px 30px;
  padding-right: 40px;
  font-size: 16px;
  margin: 20px 0;
}

.time {
  border: 1px solid white;
  border-radius: 8px;
  background-color: #fac8b88f;
  display: flex;
  justify-content: center;
  font-size: 16px;
  padding: 15px 0px;
  margin: 0px 40px;
  margin-right: 55px;
}

ul li {
  margin-bottom: 10px;
  font-size: 12px
}

.hobbies-lists {
  border: 1px solid white;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  width: 160px;
  align-content: center;
  padding-top: 10px;


  background-color: #e5d4c062;
  border-radius: 10px;
}

.dislike-lists {
  border: 1px solid white;
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding-right: 25px;
  padding-top: 10px;
  background-color: #c5decd3f;
  border-radius: 10px;

}

.hobbies {
  display: inline-block;
  padding-left: 20px;
  margin: 0;
  font-size: 18px;
}

.dislikes {
  margin: 0;
  padding-left: 25px;
  font-size: 18px
}

.hobbies-dislikes {
  border: 1px solid white;
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 12px;
  margin: 50px 15px;
}

.contact-about {
  border: 1px solid white;
  display: flex;
  justify-content: space-between;
  width: auto;
  margin: 20px 15px;
  padding: 0 50px;
  margin-right: 30px;
}

.contact-about a {
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  background-color: black;
  font-size: 14px;
}


@media (max-width: 480px) {
  body {
    margin: 0;
    padding: 0;
  }

  article {
    margin: 0;
    padding: 10px;
    box-shadow: none;
    border-radius: 0;
  }

  .banner-image-container {
    height: 100px;
    margin: 0;
  }

  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .avatar-socials-container {
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-top: -40px;
  }

  .avatar-container {
    width: 80px;
    height: 80px;
    left: 0;
    top: 0;
    margin-bottom: 10px;
  }

  nav {
    margin: 0;
    width: 60%;
    justify-content: space-around;
  }

  .x-logo,
  .linkedin-logo,
  .github-logo {
    width: 22px;
  }

  header {
    text-align: center;
    margin-top: 20px;
  }

  h2 {
    font-size: 22px;
    margin: 0;
  }

  .user-role {
    font-size: 13px;
    display: block;
  }

  .bio {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 15px;
    text-align: justify;
  }

  .time {
    margin: 20px auto;
    width: 80%;
    font-size: 14px;
    padding: 10px;
  }

  .hobbies-dislikes {
    flex-direction: row;
    align-items: center;
    margin: 30px 0;
    gap: 20px;
    margin-right: 13px;
  }

  .hobbies-lists,
  .dislike-lists {
    width: 100%;
    padding: 5px;
  }

  .contact-about {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0;
  }

  .contact-about a {
    width: 80%;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }
}


@media (min-width: 768px) {

  article {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 1024px;
    box-shadow: 1px 5px 30px 2px rgba(0, 0, 0, 0.1);
    background-color: white;
  }

  .banner-image-container {
    overflow: hidden;
    width: auto;
    height: 160px;
    margin: 3px 3px;

  }

  .avatar-container {
    border: 3px solid white;
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    left: -25px;
    top: -60px;
    overflow: hidden;
  }

  header {
    border: 1px solid white;
    margin-top: 60px;

  }

  h2 {
    margin-left: 15px;
    display: inline-block;
    font-size: 35px;
    margin-left: 30px;

  }

  .user-role {
    display: inline-block;
    margin: 0;
    margin-left: 3px;
    font-size: 20px;
    color: rgb(78, 78, 78);
  }

  .bio {
    border: 1px solid white;
    padding: 0px 30px;
    font-size: 100px;
    margin: 0;
    margin-bottom: 50px;
  }

  nav {

    display: flex;

    margin-right: 60px;
    align-items: center;
    width: 180px;
    justify-content: space-between;
    padding-top: 50px;

  }

  .x-logo {
    width: 50px;
  }

  .linkedin-logo {
    width: 50px;
    margin-left: 0;
  }

  .github-logo {
    width: 50px;
  }

  .time {
    border: 1px solid white;
    border-radius: 8px;
    background-color: #fac8b88f;
    display: flex;
    justify-content: center;
    font-size: 20px;
    padding: 15px 0px;
    margin: 0px 40px;
    margin-right: 40px
  }

  .bio {
    border: 1px solid white;
    padding: 0px 30px;
    font-size: 16px;
    margin: 0;
    margin-bottom: 50px;
  }

  .time {
    border: 1px solid white;
    border-radius: 8px;
    background-color: #fac8b88f;
    display: flex;
    justify-content: center;
    font-size: 16px;
    padding: 15px 0px;
    margin: 0px 40px;
    margin-right: 55px;
    margin-left: 50px;

  }

  ul li {
    margin-bottom: 10px;
    font-size: 20px
  }

  .hobbies-lists {
    border: 1px solid white;
    box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    width: 260px;
    align-content: center;
    padding-top: 10px;
    background-color: #e5d4c062;
    border-radius: 10px;
  }

  .dislike-lists {
    border: 1px solid white;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    width: 260px;
    padding-right: 25px;
    padding-top: 10px;
    background-color: #c5decd3f;
    border-radius: 10px;
    margin-right: 15px;
  }

  .hobbies {
    display: inline-block;
    padding-left: 20px;
    margin: 0;
    font-size: 25px;
  }

  .dislikes {
    margin: 0;
    padding-left: 25px;
    font-size: 25px
  }

  .hobbies-dislikes {
    border: 1px solid white;
    display: flex;
    justify-content: space-between;
    padding-right: 30px;
    padding-left: 40px;
    font-size: 12px;
    margin: 50px 15px;
  }

  .contact-about {
    border: 1px solid white;
    display: flex;
    justify-content: space-between;
    width: auto;
    margin: 20px 15px;
    padding: 0 150px;
    margin-right: 30px;
  }

  .contact-about a {
    text-decoration: none;
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    background-color: black;
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  article {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-top: 0;
    border-radius: 20px;
    box-shadow: 1px 5px 30px 2px rgba(0, 0, 0, 0.1);
  }

  .banner-image-container {
    overflow: hidden;
    width: auto;
    height: 160px;
    margin: 3px 3px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }

  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  h2 {
    margin-left: 15px;
    display: inline-block;
    font-size: 50px;
    margin-left: 30px;

  }

  .bio {
    border: 1px solid white;
    padding: 0px 30px;
    font-size: 100px;
    margin: 0;
    margin-bottom: 50px;
  }


  .hobbies-dislikes {
    border: 1px solid white;
    display: flex;
    justify-content: space-between;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 12px;
    margin: 20px 100px;
  }

  .contact-about {
    border: 1px solid white;
    display: flex;
    justify-content: space-between;
    width: auto;
    margin: 20px 15px;
    padding: 0 400px;
    margin-right: 30px;
  }
}