@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    background-image: url('https://i.pinimg.com/1200x/9e/5a/b8/9e5ab8e8c580ef99efab27c2285d340e.jpg');
    background-size: 400% 400%;
    color: #ffffff;
    font-family: 'Fira Code', monospace;
    margin: 0;
    overflow: hidden;
    animation: gradientAnimation 15s ease infinite;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    animation: fadeInUp 1.5s ease-out forwards;
}

#date-container,
#time-container {
    width: 100%;
    margin-bottom: 10px;
    color: #eeeeee;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.motivation-card {
    background: none;
    padding: 0;
    width: 100%;
}

#motivation-text {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    #motivation-text {
        font-size: 1.8em;
    }
}