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 {
    background-color: #002430; 
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 6px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

h1 {
    margin-bottom: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-top: 50px;
    transition: color 0.3s ease;

}
nav a:hover {

    color: #cfcfcf;

    transition: color 0.5s ease, color 0.5s ease;

}


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;
}
.contenedor {

    padding: 40px 20px;

    max-width: 1000px;

    margin-top: 25px;
    margin-right: 25%;
    margin-left: 25%;

    color:white;
    text-align:center;
    border-radius: 25px;
    background-color: #004356;


}

.contenedor h3{

    text-align: center;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  /*margin: 0;*/
}


input[type=number] {
  -moz-appearance: textfield;
}

