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

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

a {
  text-decoration: none;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 25px;
}
header {
  border-bottom: 2px solid hotpink;
  text-align: left;
}

#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;
}

.caption {
  padding-left: 5px;
}

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

.polaroid {
  width: 250px;
  height: 350px;
  font-weight: bold;
  background-color: white;
  color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  justify-content: right;
}

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

#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) {
  .polaroid {
    display: block;
    width: fit-content;
    height: fit-content;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .polaroid {
    display: block;
    width: fit-content;
    height: fit-content;
  }
}
