body {
    background: linear-gradient(-45deg, rgb(80, 77, 77), black, #4c4c92, #b13ce7, #073baa, #6817b9);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    font-family: Arial, sans-serif;
    color: #f0f0f0;
}

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

.wrapper {
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(138, 138, 138, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding-bottom: 6rem;
}

h1 {
    font-weight: 700;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

section {
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: #0050a5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.button {
    display: block;
    background: #3a8858;
    padding: 15px 25px;
    margin: 10px 0;
    text-decoration: none;
    color: #fff;
    background-color: #7b889f;
    border-radius: 5px;
    border: solid 2px #000;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

a.button:hover {
    background: linear-gradient(-45deg, rgb(83, 81, 81), #3a8858, #7c2ca0, #aa5007, #b91737);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    color: #000;
    border-color: black;
}

footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: #fff;
}
