@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Carrois+Gothic&family=Dancing+Script:wght@400..700&family=Inconsolata:wght@200..900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nanum+Gothic&family=Poetsen+One&family=Quicksand:wght@300..700&family=Sedgwick+Ave+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Berkshire+Swash&family=Carrois+Gothic&family=Coming+Soon&family=Dancing+Script:wght@400..700&family=Inconsolata:wght@200..900&family=Kolker+Brush&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nanum+Gothic&family=Poetsen+One&family=Quicksand:wght@300..700&family=Sedgwick+Ave+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Berkshire+Swash&family=Carrois+Gothic&family=Dancing+Script:wght@400..700&family=Inconsolata:wght@200..900&family=Kolker+Brush&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nanum+Gothic&family=Poetsen+One&family=Quicksand:wght@300..700&family=Sedgwick+Ave+Display&display=swap");
body {
  background: rgb(246, 245, 242);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .logo {
  width: 220px;
  height: 140px;
  margin-top: 20px;
  margin-left: 20px;
}
header h1 {
  margin-top: 5px;
  margin-left: 20px;
}

.container {
  max-width: 50%;
  max-height: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 90px 50px;
  flex: 1;
  justify-content: center;
}
.container section {
  display: flex;
  justify-content: center;
}
.container section button {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  background: radial-gradient(circle, rgb(246, 245, 242) 0%, rgb(240, 235, 227) 100%);
  border-radius: 2rem;
  border: none;
  color: #0e0d0d;
  cursor: pointer;
  text-align: center;
  margin-top: 80px;
}
.container section button .icon {
  margin-left: 5px;
}
.container #quoteContainer {
  font-size: 24px;
  line-height: 1.5;
  background: radial-gradient(circle, rgb(246, 245, 242) 0%, rgb(240, 235, 227) 100%);
  border-radius: 2rem;
  padding: 10px;
  width: 100%;
  max-width: 479px;
  box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.container blockquote {
  font-family: Coming Soon;
  margin-top: 5px;
}
.container img {
  width: 100px;
  height: 90px;
  margin-top: 30px;
}
.container .author-pic {
  margin-bottom: 10px;
  width: 90px;
  height: 100px;
  border-radius: 50%;
}
.container cite {
  font-family: Berkshire Swash;
  font-size: 18px;
  padding: 10px;
  margin-top: 50px;
}

.footer {
  text-align: center;
  font-size: 14px;
  padding-top: 150px;
}

@media (max-width: 767px) {
  header .logo {
    width: 150px;
    height: 80px;
  }
  header h1 {
    font-size: 25px;
  }
  .container {
    max-width: none;
  }
  .container #quoteContainer {
    padding: 5px;
  }
  #quoteContainer {
    padding: 3px;
  }
  #quoteContainer blockquote {
    font-size: 15px;
  }
  #quoteContainer img {
    width: 80px;
    height: 70px;
    margin-top: 15px;
  }
  #quoteContainer .author-pic {
    width: 70px;
    height: 75px;
  }
  #quoteContainer cite {
    font-size: 8px;
  }
}