body {
    font-family: Arial, sans-serif;
    background: linear-gradient(270deg, #f0f8ff, #004080);
    background-size: 200% 200%;
    animation: gradientWave 36s infinite ease-in-out;
    color: #333;
    margin: 20px;
    padding: 20px;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


h1 {
    color: #004080; 
    text-align: center;
    transition: color 36s ease-in-out;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    transition: color 36s ease-in-out; 
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
}

th, td {
    border: 1px solid #004080; 
    padding: 10px;
    text-align: left;
    transition: color 36s ease-in-out; 
}

th {
    background-color: #004080;
    color: white;
}

td {
    background-color: #f0f8ff; 
    color: #333; 
}

.back-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 36s;
}

.back-button:hover {
    background-color: #555;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 36s;
}

.scroll-top:hover {
    background-color: #003366;
}
