:root{
    --color-a:#141E27;
    --color-b:#203239;
    --color-c:#E0DDAA;
    --color-d:#EEEDDE;
    --color-e:#547792;
    --fuente-principal:'Days One';
    --fuente-secundaria:'Montserrat';
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}


html{
    scroll-behavior: smooth;
}

section[id]{                            /* selecciona todas los sections que tengan id*/
    scroll-margin-top: 5rem;
}


body{
    min-height: 100vh;
    width: 100%;
    background: var(--color-a);
    font-family: var(--fuente-secundaria), sans-serif;
    font-weight: bold;
    color: var(--color-d);
}

.header{
    background: var(--color-b);
    display: flex;
    align-items: center;
    justify-content:center;
    height: 5rem;
    width: 100%;
    border-bottom: 2px solid var(--color-c);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
}
.header__inner{
    background-color: transparent;
    width: 100%;
    max-width: 990px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.header__nombreEmpresa{
    color: var(--color-c);
    font-size: 30px;
    font-weight: bolder;
    margin-left: 1rem;
}
.header__logo{
    max-height: 60px;
    width: auto;
    margin: 1rem;
    background-color: var(--color-c);
    border-radius: 50%;
}
.header__logo:hover{
    box-shadow: 1px 1px 10px 1px var(--color-c);
}
.menu__nav2{
    display: none;
}
.main{
    background-color: var(--color-a);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.link-titulo{
    text-decoration: none;
    color: var(--color-c);
}





