*{
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: rgb(211, 210, 210);
}

a{
    text-decoration: none;
    color: initial;
}

a:visited{
    color: initial;
}

.main_banner{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav{
    background-color: rgb(206, 30, 138);
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 5;
    object-fit: cover;
}

.menu{
    display: flex;
    font-size: 1.5rem; 
    text-transform: uppercase;
    position: relative;
}

.nav_link{
    margin: 20px;
}

.nav_link:hover{
    color: white;
    text-decoration: underline;
    font-weight: bolder;
}

.redes{
    display: flex;
}

.nav_img{
    margin: 20px;
}

.img_redes{
    position: relative;
}

.img_black{
    opacity: 1;
    transition: opacity 0.3s ease;
}

.img_color{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease;
}

.img_redes:hover .img_color{
    opacity: 1;
}

.img_redes:hover .img_black{
    opacity: 0;
}

.title{
    background-color: rgb(61, 168, 255);
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.logo_team{
    height: 100px;
}

.logo_team_lose{
    height: 100px;
    filter: contrast(10%);
}

.logo_teams{
    height:50px;
    width: 150px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.logo_teams_lose{
    height:50px;
    width: 150px;
    margin-top: 25px;
    margin-bottom: 25px;
    filter: contrast(10%)
}

.teams{
    padding: 10px;
    display: flex; 
    flex-wrap: wrap;
}

.name_team{
    font-size:150%;
    padding-left: 10px;
    margin-bottom: 10px;
}

.jornada{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    
}

.player_team{
    line-height: 1.5;

}

.card_team{
    background-color: transparent;
    width: 220px;
    padding: 20px 15px;
    margin: 15px auto;
    border: 4px ;
    border-style: dashed solid;
    border-radius: 5px;
    box-shadow: 0 0 10px;
    text-align: center;
}

.day_game{
    background-color: rgb(138, 135, 135);
    text-align: center;
    font-size: 2rem;
    font-style: italic;
    padding: 20px 15px;
    margin: 15px auto;
    border: 4px;
    border-radius: 5px;
    border-style: groove;
    border-color: rgb(211, 210, 210);
}

.match{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(transparent, rgb(61, 168, 255, 0.9), transparent, rgb(206, 30, 139, 0.9), transparent);
}

.game{
    padding: 10px;
    border: 4px;
    border-radius: 5px;
    border-style: dotted;
}

.game:hover{
    border-color: white;
}

.caster_box{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card_team:hover{
    background: linear-gradient(transparent, rgb(61, 168, 255, 0.9), transparent, rgb(206, 30, 139, 0.9), transparent);
}

.caster_img{
    max-width: 180px;
    border-radius: 100px; 
}

.cast{
    font-size: 1.5rem;
    text-transform: uppercase;
}

.player:hover{
    color: rgb(255, 215, 0);
    text-transform: uppercase;
    font-weight: bolder;
}

#menu_2{
    background-image: url(images/fondo-tabla.png);
}

table {
    margin: auto;
    width: 50%;
    border-collapse: collapse;
    margin-bottom: 20px;
    
    background-size: cover;
    border-radius: 5px;
}
th, td {
    text-transform: uppercase;
    padding: 10px;
    text-align: center;
    height: 75px;
    font-weight: bold;
}
th {
    background-color: rgb(61, 168, 255, 0.5);
    height: 50px;
}
tr:nth-child(even) {
    background-color: rgb(206, 30, 138, 0.5);
}
caption {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.team_table{
    height: 50px;
}

.teams_table{
    width: 100px;
}