html {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%231e90ff' fill-opacity='0.175'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  font-family: Inter, serif;
  font-weight: 500;
}

main {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

a {
  text-decoration: none;
  color: #1e90ff;
}

#quote-container {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 900px;
  padding: 20px 30px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0);
}

#quote-container::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease-in-out, background-color 0.35s ease-in-out;
}

#quote-container:hover::after {
  opacity: 1;
}

.quote-text {
  font-size: 2.75rem;
}

.long-quote {
  font-size: 2rem;
}

.fa-quote-left .fa-quote-right {
  font-size: 4rem;
}

.quote-author {
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
}

.button-container {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}

.quote-container-button {
  padding: 0.5rem 1.5rem;
  height: 2.5rem;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  background-color: #333333;
  outline: none;
  box-shadow: 0 0.3rem rgba(120, 120, 120, 0.5);
  font-size: 1.2rem;
}

.quote-container-button:hover {
  background-color: #555555;
}

.quote-container-button:active {
  transform: translate(0, 0.3rem);
  box-shadow: none;
}

.twitter-button {
  font-size: 1.3rem;
}

.twitter-button:hover {
  background-color: #6cadde;
}

.lds-dual-ring {
  position: absolute;
  top:  45%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 999;
  width: 96px;
  height: 96px;
}

.lds-dual-ring::after {
  content: " ";
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #6cadde transparent #6cadde transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1000px) {
  .quote-container {
    margin: auto 16px;
  }

  .quote-text {
    font-size: 2.3rem;
  }

  .fa-quote-left .fa-quote-right {
    font-size: 3rem;
  }

  .quote-author {
    font-size: 1.75rem;
  }
}
