/* GENERALES */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600&display=swap');

body {
    background-image: url(../img/fondobody3.png);
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    color: whitesmoke;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

.contenido {
    background-color: #152238d5;
    width: 70%;
    margin: 0 auto;
    border: 3px solid whitesmoke;
    padding: 16px 34px;
    text-align: justify;
    border-radius: 20px;
}

h3 {
    text-align: center;
    padding: 10px;
    background-color: #7b9ab9a9;
    border-radius: 100px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px #0000009f;
    box-shadow: 3px 0px 20px #00000027;
}

.flechaarriba {
    width: fit-content;
    margin: auto;
}

.flechaarriba img {
    display: block;
    margin: 0 auto;
    padding-top: 10px;
    border-radius: 100%;
}

a {
    color: rgb(185, 204, 255);
    text-decoration: none;
}

a:hover {
    color: #adadad;
}

.txt {
    padding: 0 2%;
    text-indent: 40px;
}


/* ESPECÍFICOS */

/* HEADER */
.encabezado{
    text-align: center;
}

.header {
    background-image: url("../img/fondoheader.png");
    background-size: cover;
    width: 100%;
    margin: 16px 0 20px;
    border-radius: 20px;
    box-shadow: 3px 3px 15px #00000044;
}

.y2k {
    display: block;
    margin: auto;
    width: 40%;
    max-width: 200px;
    padding: 50px;
}

/* INTRODUCCIÓN */
.introduccion {
    padding: 16px 0 20px;
    text-align: center;
}

.caracteristicas, .estilo, .moda, .playlists, .peliculas {
    background-image: linear-gradient(rgba(255, 255, 255, 0.096), rgba(255, 255, 255, 0));
    border-radius: 30px;
}

/* IMÁGENES */

.imgcarac {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2%;

    width: auto;
    text-align: center;
    padding: 2%;
}

.imgcarac img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 3px 3px 15px #00000044;
}

.imgestilo {
    display: block;
    border: 3px solid whitesmoke;
    border-radius: 20px;
    float: right;
    margin-left: 3%;
    margin-bottom: 1%;
    box-shadow: 3px 3px 15px #00000044;
}

.imgmoda {
    /* grid */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;

    /* config */
    width: 100%;
    text-align: center;
    padding: 3% 0 3%;
}

.imgmoda img {
    border-radius: 100%;
    width: 100%; /*que ocupe toda la columna del grid*/
    box-shadow: 3px 3px 15px #00000056;
}

.fashion1 {
    grid-column: span 2;
    grid-row: span 2;
}

/* MENU */

.menu {
    width: auto;
}

.menu ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.menu li div {
    background-color: #3e5172;
    font-weight: bold;
    padding: 9px;
    min-width: 15%;
    border-radius: 20px;
    border: 3px solid transparent;
    text-shadow: 2px 2px 10px #0000009f;
    box-shadow: 3px 3px 15px #00000044;
}

.menu li div:hover {
    border: 3px solid white;
}

.menu a {
    color: whitesmoke;
    text-decoration: none;
}

.menu a:hover {
    color: #adadad;
}

/* PIE */

.pie {
    color: #1b2b46;
    font-weight: 600;
    text-align: center;
}

/* DOS COLUMNAS */

.playlistslista, .peliculaslista {
    column-count: 3;
    column-gap: 30px;
}