/* Estilo general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Header */
header {
    background-color: #d32f2f;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav .btn {
    background-color: #ffc107;
    color: #d32f2f;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav .btn:hover {
    background-color: #ff5722;
    color: #fff;
}

/* Secci¨Žn hero */
.hero {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
}

/* Lista de partidos */
.partidos-lista {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.partidos-lista h2 {
    color: #d32f2f;
    margin-bottom: 20px;
}

.partido {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.partido:last-child {
    border-bottom: none;
}

.partido h3 {
    color: #d32f2f;
}

.enlace {
    color: #007bff;
    text-decoration: none;
}

.enlace:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #ffc107;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

