﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
    min-height: 100vh;
}

    /* Pseudo-elemento para el fondo */
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../../img/cancha.jpg'); /* Cambia por tu imagen */
        background-size: cover;
        background-position: center;
        opacity: 0.4; /* Ajusta la transparencia (0 = invisible, 1 = opaco) */
        z-index: -1; /* Mantener detrás del contenido */
    }

/* Contenido encima del fondo */
.contenido {
    padding: 50px;
    color: #000;
    text-align: center;
}
