body
{
    background-attachment: fixed;
    background-image: url(../imagenes/fondo.jpg);
    background-size: 440px 350px;
    background-position: -12% -15%;
    padding: 0 200px;
}

/* Header */

.header
{
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar-nav
{
    margin-left: auto;
}

/* Main (timeline de reseñas) */

.main
{
    background-color: #f5f5f5;
}

.wrapperMain
{
    padding: 2rem;
}

.wrapperCards
{
    display: flex;
    flex-direction: column;
}

.cardDisco
{
    margin-bottom: 2rem;
    width: 100%;
}

.cardDisco a
{
    color: inherit;
    text-decoration: none;
}

.cardDisco-img
{
    height: 100%;
    padding: 10px;
    width: 100%;
}

.cardDisco-info
{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
}

.cardDisco-titulo
{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cardDisco-descripcion
{
    display: -webkit-box;
    overflow: hidden;
	text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  	-webkit-line-clamp: 5;
}

.botonesCambioPagina
{
    align-items: center;
    display: flex;
    font-size: 1.5rem;
    justify-content: space-evenly;
    margin-top: 3.5rem; 
}

.botonesCambioPagina a
{
    color: inherit;
    text-decoration: none;
}

.botonCambio
{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Aside (autor, carousel, etc.) */

.aside
{
    background-color: #e9e9e9;
    position: sticky;
    top: 3.5rem;
    height: 100%;
}

.wrapperAside
{
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
}

.autor
{
    align-items: center;
    background-color: rgb(108, 135, 159);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: justify;
    outline: 2px solid #000000;
}

.autor *
{
    margin-bottom: 1rem;
}

.autor-h3
{
    text-align: center;
}

.autor-img
{
    border-radius: 200px;
    width: 50%;
}

.autor-p
{
    color: #e9e9e9;
    margin: 0;
}

.discosAleatorios
{
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.discosAleatorios-h3
{
    margin-bottom: 1rem;
    text-align: center;
}

.discosAleatoriosCarousel
{
    height: 220px;
    width: 100%;
}

.listaSpotify
{
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.listaSpotify-h3
{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Footer */

.wrapperFooter
{
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
}

.botonSubir
{
    background-color: #340e98;
    border: none;
    color: #ffffff;
    display: flex;
    font-size: 1.5rem;
    justify-content: center;
    margin-top: -3px;
    width: 5rem;
}

.botonSubir
{
    -webkit-text-stroke: 2px;
}

.wrapperFooter-p
{
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Tabletas grandes */

@media screen and (max-width: 1300px) and (min-width: 1200px)
{
    body
    {
        background-position: -16% -15%;
        background-size: 400px 300px;
        padding: 0 100px;
    }
}

/* Tabletas normales */

@media screen and (max-width: 1199px) and (min-width: 568px)
{
    body
    {
        padding: 0
    }

    /* Main */

    .main
    {
        width: 100%;
    }

    .wrapperMain
    {
        padding: 2rem 0.5rem;
    }

    /* Aside */

    .aside
    {
        display: none;
    }
}

/* Mobile */

@media screen and (max-width: 567px)
{
    body
    {
        padding: 0;
    }

    /* Main */

    .cardDisco
    {
        height: 100%;
        width: 100%;
    }

    .botonesCambioPagina
    {
        justify-content: space-between;
    }

    /* Aside */

    .aside
    {
        display: none;
    }
}