html {
  font-size: 16px;
}
body {
  margin: 0;
  box-sizing: border-box;
  background-color: rgb(211, 211, 211);
  font-family: poppins;
}

@font-face {
  font-family: "Lemon/Milk";
  src: url("//db.onlinewebfonts.com/t/67137b5f6928edc941186baaab5a664b.eot");
  src: url("//db.onlinewebfonts.com/t/67137b5f6928edc941186baaab5a664b.eot?#iefix")
      format("embedded-opentype"),
    url("//db.onlinewebfonts.com/t/67137b5f6928edc941186baaab5a664b.woff2")
      format("woff2"),
    url("//db.onlinewebfonts.com/t/67137b5f6928edc941186baaab5a664b.woff")
      format("woff"),
    url("//db.onlinewebfonts.com/t/67137b5f6928edc941186baaab5a664b.ttf")
      format("truetype"),
    url("//db.onlinewebfonts.com/t/67137b5f6928edc941186baaab5a664b.svg#Lemon/Milk")
      format("svg");
}
#main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
}

#title {
  font-family: Lemon Milk;
}

#tribute-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 55vw;
  margin-top: 35px;
}

li {
  margin: 20px 0px;
}

#img-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw;
  padding: 25px 0px;
  background-color: #ffffff;
}

#image {
  width: 70vw;
}

#img-caption {
  margin: 25px 20px;
}

#title {
  text-align: center;
}

blockquote {
  font-style: italic;
}

h4 {
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  #tribute-info {
    width: 90vw;
  }
  #image {
    width: 95%;
  }
}
