body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    text-align: center;
    animation: backgroundAnimation 10s ease infinite;
}

@keyframes backgroundAnimation {
    0% { background: linear-gradient(to right, #ff7e5f, #feb47b); }
    50% { background: linear-gradient(to right, #43cea2, #185a9d); }
    100% { background: linear-gradient(to right, #ff7e5f, #feb47b); }
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: textAnimation 5s ease-in-out infinite;
}

@keyframes textAnimation {
    0% { color: #fff; }
    50% { color: #f0e68c; }
    100% { color: #fff; }
}

#quote-container {
    width: 80%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.button {
    background: #fff;
    color: #333;
    border: none;
    padding: 15px 25px;
    margin: 10px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.button:hover {
    background: #333;
    color: #fff;
    transform: scale(1.1);
}

#hasan {
    font-size: 1.5em;
    margin-top: 20px;
    min-height: 50px;
    transition: font-size 0.3s;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    #quote-container {
        width: 90%;
    }
    #hasan {
        font-size: 1.2em;
    }
}