html{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    /* background-color: #666666; */
    background-image: linear-gradient(to bottom, #2e3d3b, #323633);
    
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *:before, *.after{
    box-sizing: inherit;
}

h1, h2, h3{
    text-align: center;
    text-transform: uppercase;
}

h1{
    font-size: 4rem;
}

h2{
    font-size: 3.2rem;
    color: rgb(153, 218, 128);
    margin: 4rem 0 2rem 0;
}

h3{
    font-size: 2.5rem;
}

img{
    width: 100%;
}

p{
    line-height: 1.5;
    font-size: 1.8rem;
}

.container {
    margin: 0 auto;
    width: 95%;
    max-width: 120rem;
    text-align: center;
}

.boton{
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    width: 20rem;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
    cursor: pointer;
    margin-top: 2rem;
}

.logo{
    background-color: #101311;
    height: auto;
    margin-bottom: 3rem;
}

.logo__imagen{
    width: 15rem;
    padding: 1rem;
}

.player__detalles{
    margin: 2rem;
    border-bottom: 0.2rem solid rgb(99, 99, 111);
    padding-bottom: 3rem;
}

.player__detalles:last-child{
    border-bottom: none;
}

@media (min-width: 768px){
    .player__detalles{
        display: flex;
        justify-content: space-between;
    }

    .player__imagen,
    .player__detalle{
        flex-basis: calc(50% - 1rem);
    }

}

.player__detalle{
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: space-between;
    padding: 1rem 0;
}

.player__detalle p{
    color: white;
    text-align: left;
}

