body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }
        .landing-page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            opacity: 0; 
            transition: opacity 1.5s ease-in-out; 
            z-index: -1; 
        }

.landing-page {
    width: 100%;
    height: 100%;
    background: url('src/backgronds/copaAmericaxEuro.png') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
        
        .landing-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0; 
}
        .content {
            position: relative;
            z-index: 1;
            color: white;
        }
        .botoes-container {
            display: flex;
            gap: 2rem;
        }
        .botao-competicao {
            padding: 1rem 2rem;
            font-size: 1.2rem;
            color: white;
            border: 2px solid white;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .botao-competicao:hover {
            background-color: white;
            color: black;
            transform: scale(1.1);
        }
        @media (max-width: 600px) {
            .botoes-container { flex-direction: column; }
            h1 { font-size: 2rem; }
        }