@import url("https://fonts.googleapis.com/css2?family=Lobster+Two:ital@1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@600&display=swap");

body, html {
  height: 100%;
  margin: 0;
  font-size: 22px;
}

#quote-container {
  display: block;
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: #f8f8f8;
  opacity: 0.7;
}



#quote-text {
  font-size: calc(
    1.6em + 0.8vw!important;
  ); /* Automatically resize the text based on the viewport width */
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  animation: fade-in 1s ease-in-out;
  padding: 0 20px;
  margin-bottom: 10px; /* Add some margin below the quote */
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.originator {
    min-width: 80%;
    text-align: right;
    position: absolute;
    font-family: "Rubik", sans-serif;
    color: #ffffff;
    padding: 400px 32px 62px 0;
    margin: 300px 0 0 0;
  }


div.originator {
  display: block;
  color: black;
  width: 335px;
  height: auto!important;
  font-size: calc(
    0.5em + 0.3vw
  ); /* Automatically resize the text based on the viewport width */
}

p {
  padding-bottom: 50px;
  font-family: "Lobster Two", cursive;
  font-size: calc(
    1em + 0.5vw
  ); /* Automatically resize the text based on the viewport width */
  padding: 50px 40px 50px 25px;
}

.gradient-background {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  animation: gradientAnimation 20s linear infinite;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #ff1493, #00bfff, #ff69b4, #00ff00);
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Add more styles as desired */
body, html {
  height: 100%;
  margin: 0;
}

.gradient-background {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  animation: gradientAnimation 20s linear infinite;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #ff1493, #00bfff, #ff69b4, #00ff00);
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Add more styles as desired */

@media only screen and (max-width: 450px)  {
.quote-text {
  font-size: calc(
    1.6em + 0.8vw!important;
  ); /* Automatically resize the text based on the viewport width */
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  animation: fade-in 1s ease-in-out;
  padding: 0 20px;
  margin-bottom: 10px; /* Add some margin below the quote */
}
div.originator {
  width: 335px;
  height: auto!important;
  font-size: calc(
    0.5em + 0.3vw
  ); /* Automatically resize the text based on the viewport width */
}
}

