/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GENERAL */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    background-color: #ffffff;
    color: #333;
}

/* HEADER */
header {
    background-color: #312835;
    color: rgb(219, 218, 238);
    padding: 20px;
}

.logo h1{
    font-size: 28px;
    line-height: 1.1;
}

.logo p{
    color: #d98bcc;
    font-size: 11px;
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.logo-comby{
    width: 50px;
    height: auto;
}

/* NAVEGACION */
nav {
    background: linear-gradient(to bottom, #312835, black);
}

nav ul {
    list-style: none;
    display: flex;
}

nav > ul > li {
    position: relative;
}

nav a,
nav span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 20px;
    color: rgb(230, 227, 238);
    text-decoration: none;
    cursor: pointer;
}

nav a:hover,
nav span:hover {
    background-color: #000407;
}

/* SUBMENU */
nav ul ul {
    z-index: 1000;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #370337b8;
    min-width: 220px;
    border-radius: 0 0 6px 6px;
}

nav ul ul li a{
    padding: 12px 20px;
}

/*Mostrar submenu*/
nav ul li:hover > ul {
    display: block;
}


/* ICONOS */
.material-icons {
    font-size: 18px;
}


/* IMAGEN */
.img-container{
    position: relative;
}


.imgPres {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* INDICADORES */
.etiquetas {
    position: absolute;
    top: 20px;
    right: 20px;

    list-style: none;
    display: flex;
    gap: 15px;

    font-family: Arial, Helvetica, sans-serif;
}

.etiquetas li {
    padding: 10px 20px;
    border-radius: 5px;
    min-width: 100px;
    text-align: center;
    color: #2a1438;
}

/*ARTICULO*/
.article-img {
    position: absolute;
    top: 75%;
    left: 21%;
    transform: translate(-50%, -50%);

    width: 100%;
    display: flex;
    justify-content: center;
}

.definicion {
   max-width: 400px;
   padding: 30px;
   

   font-family: Arial, Helvetica, sans-serif;
   flex-direction: column;
}

.definicion h2 {
   margin: 13px 0; 
   font-size: 24px;
   color: #2a1438;
}

.mantto-definicion {
    font-size: 14px;
    line-height: 1.7;
    color: #2a1438;
    text-align: justify;
}

/* RESULTADOS */
.resultados {
    font-size: 90px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 10px;
}

/* FOOTER */
footer {
    background-color: #312835;
    color: white;
    text-align: right;
    padding: 10px;
}




