body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background:#5f71c2;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    color: rgba(233, 229, 32, 0.911);
    margin-bottom: 20px;
    font-size: 36px;
    transition: 0.7s all;
    text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
}

.quote-container {
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, #5f71c2, #ff00d4);
    animation: backgroundAnimation 20s infinite alternate linear;
    border-radius: 0 0 40px 40px;
}

@keyframes backgroundAnimation {
    0% { transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(60deg) rotateY(360deg) rotateZ(360deg); }
}

button {
    position: relative;
    background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: #4c53af;
    color: white;
    border: none;
    border-radius: 4px;
    margin-bottom: 20px;
    

}


button:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
  transition-duration: .1s;
}




.quote {
    padding: 20px;
    background-color: rgba(136, 255, 225, 0.8);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#quote {
    margin-bottom: 10px;
    font-size: 20px;
}

#author {
    font-style: italic;
    color: #ffffff;
}
