body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(
        180deg,
        #a8e6cf 0%,
        #dcedc1 25%,
        #b6ffce 50%,
        #a5faff 75%,
        #9ec6c0 100%
    );
        background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;

}

.quote-container {
    position: relative;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    
}

#quote-text {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#quote-author {
    font-style: italic;
    color: #666;
}

.text {
justify-content: center;
  margin-left: 0%;
  margin-right: 0%;
  position: absolute;
  top: 1%;
}


.gradient {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-animation: textShine 1s ease-in-out infinite alternate;
  animation: textShine 2s ease-in-out infinite alternate;
  background: -webkit-radial-gradient(circle, #189fd1 0%, #62f873 100%);
  background: radial-gradient(circle, #189fd1 0%, #62f873 100%);
  background-clip: text;
  background-size: 200%;
  position: relative;
  font-size: 300%;
  user-select: none;
  margin: none;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}





.text-name {
left: 85%;
  margin-left: 0%;
  margin-right: 0%;
  position: absolute;
  top: 85%;
}


.gradient-name {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-animation: textShine 1s ease-in-out infinite alternate;
  animation: textShine 2s ease-in-out infinite alternate;
  background: -webkit-radial-gradient(circle, #27738f 0%, #27c93a 100%);
  background: radial-gradient(circle, #27738f 0%, #27c93a 100%);
  background-clip: text;
  background-size: 200%;
  position: relative;
  font-size: 70%;
  user-select: none;
  margin: none;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media screen and (max-width: 768px) {
    .quote-container {
        width: 90%;
        margin: 0 auto;
        padding: 15px;
    }

    #quote-text {
        font-size: 1.2em;
    }

    .gradient {
        font-size: 200%;
    }

    .gradient-name {
        font-size: 60%;
    }

    .text-name {
        left: 75%;
        top: 90%;
    }
}

@media screen and (max-width: 480px) {
    .quote-container {
        width: 95%;
        padding: 10px;
    }

    #quote-text {
        font-size: 1em;
    }

    .gradient {
        font-size: 150%;
    }

    .gradient-name {
        font-size: 50%;
    }
}

.switch-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-label {
    color: #666;
    font-size: 14px;
}




