*{
  padding: 0px;
  margin: 0px;
}

body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  place-items: center;
  padding: 30px;
}

.profile-card{
  width: 70%;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
}

header{
  background-color: rgb(98, 1, 167);
  padding: 15px;
  color: white;
  font-weight: 600;
  font-size: 30px;
  border-radius: 10px;
  text-align: center;
}

.profile-details{
  display: flex;
  justify-content: space-between;
  padding: 30px;
}

.user-photo{
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
}

#user-time{
  opacity: 60%;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}

.biography{
  margin-left: 20px;
  text-align: center;
}

.user-name{
  font-size: 30px;
}

.user-bio{
  margin-top: 10px;
  text-align: justify;
  line-height: 1.5rem;
  font-size: 18px;
  opacity: 70%;
}

.hobby-dislikes{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  text-align: left;
}
.hobby-dislikes h3{
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  opacity: 80%;
}
.hobby-dislikes li{
  list-style: none;
  margin-left: 10px;
  margin-right: 10px;
  opacity: 70%;
}

footer nav{
  display: flex;
  align-items: center;
  background-color: rgb(98, 1, 167);
  height: 70px;
  border-radius: 10px;
  color: white;
  padding-left: 30px;
  font-size: 22px;
}

.user-social-links{
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-top: 10px;
}
.user-social-links li{
  list-style: none;
}
i{
  padding: 5px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  color: white;
}
i:hover{
  transform: scale(1.2);
}
i:active{
  transform: none;
}

@media (max-width: 1100px) {
  .hobby-dislikes{
    flex-direction: column;
  }
}

@media (max-width: 950px) {
  .profile-card{
    width: 100%;
  }
  .profile-details{
    flex-direction: column;
    text-align: center;
  }
  .biography{
    margin-left: 0px;
  }
  .user-name{
    margin-top: 20px;
  }
  .user-bio{
    word-wrap: break-word;
  }
  .hobby-dislikes h3{
    margin-top: 30px;
  }
}

@media (max-width: 450px) {
  .user-photo{
    width: 210px;
    height: 210px;
  }
  footer nav{
    padding-left: 20px;
    font-size: 18px;
  }
  i{
    font-size: 25px;
    margin-top: -10px;
  }
}