@font-face {
    font-family: 'Ubuntu';
    src: url('../assets/fonts/ubuntu/Ubuntu-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/26B5pI.gif');
    background-repeat: repeat;
    background-color: #f0f0f0;
    font-family: 'Ubuntu', sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* --- CHANGES START HERE --- */

.content-box {
    background: linear-gradient(-45deg, #00da00da, #00ff00, #00da00da);
    
    background-size: 400% 400%;
    
    animation: gradient-move 2.7s ease infinite;

    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    font-size: 20px;
    color: white; 
    text-shadow: 1px 1px 2px rgb(28, 38, 49);
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}