

body {
    background-color: var(--background);
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}





h1 {
    font-size: 2.5em;
    margin: 20px 0;
    text-align: center;
    text-transform: uppercase;
}

.container {
    max-width: 800px;
    margin: 20px;
    margin-top: 80px;
    padding: 30px;
    background-color: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

p {
    line-height: 1.6;
    font-size: 1.1em;
    margin: 15px 0;
    text-align: justify;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.8;
}


