html, body {
    height: 100%; 
    margin: 0;  
}
body {
    background-image: url('static/wallpaper.jpg');
    background-size: cover;  
    background-position: center;  
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex; 
    align-items: center; 
    justify-content: center;  
    color: #fff; 
}

.team-card {
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: transparent;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card img {
    max-width: 100px;
    margin-bottom: 10px;
}

.team-card h5 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    font-weight: bold;
}

.stats-box {
    background-color: #28a745;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
}

.stats-title {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1.2; 
    text-align: center; 
}

.player-label {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.p1, .p2 {
    background-color: #28a745;
}


/* =============================================== */
/* ESTILOS PARA TELAS PEQUENAS (CELULARES)         */
/* =============================================== */
@media (max-width: 768px) {
    body {
        height: auto;
        min-height: 100%;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .player-label {
        font-size: 1.2rem;
    }
    
    .team-card h5 {
        font-size: 1.1rem;
    }

    .team-card p {
        font-size: 1.2rem;
    }

    .stats-box {
        width: 50px;       
        height: 50px;      
        font-size: 1.2rem; 
    }
}