@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: aquamarine;
}
header {
  font-size: 2rem;
  margin-bottom: 20px;
}
.container {
  background-color: aqua;
}
#text {
  /* Center horizontally */
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
#tweet-quote {
  margin-right: 20px;
}
.fa-twitter {
  font-size: x-large;
}
.footer {
  margin-top: 30px;
}
#author {
  margin-top: 50px;
  margin-bottom: 35px;
  font-size: 1rem;
}
#quote-box {
  text-align: center;
}
