body {
    background-color: #ffffff;
}

header {
    background-color: #4988d1;
    padding: 2rem;
    margin: 0rem;
    border-color: #4988d1;
    border-radius: 1rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
}

nav ul li a:hover {
    color: #a5a8aa;
}

nav img {
    height: 10rem;
}


section {
    background-color: #81acdd;
    padding: 1rem;
    margin: 0.5rem;
    border-color: #81acdd;
    border-radius: 1rem;
}

.titulo {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin: 3rem;
    text-shadow: 0.5rem 0.5rem 0.6rem rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: #4988d1;
    color: white;
    padding: 1rem 1rem;
    border-radius: 2rem;
    margin: 0.5rem;

}

.texto {
    font-size: 1.2rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: #4988d1;
    padding: 1rem 1rem;
    border-radius: 2rem;
    margin: 0.5rem;
}

section dt {
    color: #ffffff;
}

.definicion {
    color: #012d5f;
}

#arriba {
    color: #ffffff;
}

#video {
    width: 110rem;
    height: 50rem;
}

section table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #4988d1;
}

.escudos {
    width: 5rem;
    transition: transform 0.3s ease-in-out;
}

.escudos:hover {
    transform: scale(1.2);
}

.paises {
    width: 5rem;
    transition: transform 0.3s ease-in-out;
}

.paises:hover {
    transform: scale(1.2);
}

 section th, td {
    border: 0.1rem solid #ddd;
    padding: 1.2rem;
    color: #ffffff;
}

.playerimg {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.playerimg img {
    width: 8rem;
    transition: transform 0.3s ease-in-out;
}

.playerimg:hover  {
    transform: scale(1.2);
}

.player-name {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0.3rem;
    text-align: center;
}


footer {
    background-color: #4988d1;
    padding: 2rem;
    margin: 0rem;
    border-color: #4988d1;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body p {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: left;
}