/* Comentario de css */

/* Selector mediante etiqueta --> Generalidad
selector {
    propiedad: valor,
    propiedad2: valor,
}*/


/* Selector mediante clase --> Especifidad -> peso mayor que etiqueta
.clase {
    propiedad: valor,
    propiedad2: valor,
}

tambien esta por id, pero no se puede repetir
*/
/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/* Reset */
*
{
    padding: 0px;
    margin: 0px;
    color: white;
}

body
{
    font-family: "Poppins";
}


/* Header */


header
{
    background-color: #285A48;
;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img{
    width: 70px;
}

.list-nav
{
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.list-nav li a
{
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 10px;
}

.logo_word
{
    text-transform: uppercase;
    font-weight: 100;
    display: flex;
    align-items: center;
}


/* Main */


.presentation
{
    background-color: #091413;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.presentation-child
{
    margin: 10px;
}


.summary
{
    background-color: #408A71;
}

.highlight
{
    background-color: #408A71;
    padding: 10px;
}

.highlightChild
{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
    gap: 15px;;
}




/* Pie de pagina */


footer
{
    background-color: #091413;
    color: white;
    font-weight: 200;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;  
    height: 30px; 
    font-size: 15px;
}
