html {
  background-color: black;
  color: #fff;
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100%;
}

header {
  border-bottom: 2px solid hotpink;
  text-align: left;
}

a {
  text-decoration: none;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: bold;
}

#heading {
  font-size: 50px;
  text-decoration: none;
  display: inline;
  color: white;
}

#links {
  display: flex;
  width: 100%;
  text-align: right;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 25px;
  justify-content: right;
}

.field {
  padding: 10px;
  display: inline-block;
}

#container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 3%;
  padding-bottom: 3%;
}

#profile {
  display: inline-block;
  height: 500px;
  width: 500px;
  justify-content: left;
}

#bio {
  padding-left: 10%;
  display: inline-block;
  text-align: left;
  justify-content: right;
  width: 40%;
  font-size: x-large;
  height: 400px;
}

.text {
  font-weight: bold;
  color: white;
}

#icons {
  display: block;
  color: white;
  font-weight: bold;
}

footer {
  display: block;
  text-align: center;
}
@media screen and (min-device-width: 320px) and (max-device-width: 480px) {
  section {
    font-size: x-large;
  }

  #profile {
    display: block;
    width: fit-content;
    height: fit-content;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  section {
    font-size: x-large;
  }
}
