body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-image: url('../img/fondo.jpg'); 
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
}

header {
    text-align: center;
    padding: 20px;
    background-color: white;
}

h1 {
    margin-bottom: 10px;
}

nav a {
    text-decoration: none;
    color: blue;
    font-weight: bold;
    margin-left: ;
}

hr {
    margin: 10px 0;
}

.partidos {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 350px;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.02);
}

.card img {
    width: 100%;
    height: auto;
}

.info {
    padding: 15px;
}

.info small {
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.info strong {
    display: block;
    margin-bottom: 10px;
}

html{
    background-image: url('../img/fondo.jpg'); 
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
}

.contenedor{
    text-align: center;
}