body {
    margin: 0;
    padding: 3rem;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #ff7e5f, #feb47b, #ffefa0, #b6ffab, #a2eeff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.content {
    text-align: center;
    color: #222;
    z-index: 1;
}

.content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    margin: 5px 0;
}

.content a {
    color: #222;
}

a.btn {
    margin: 1rem;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

a.btn:hover {
    background-color: #0056b3;
}