*{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100dvh;
    max-width: 100dvw;
}

main{
    height: 100%;
}
.header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20vh;
    max-height: 10vh;
    max-width: 100vw;
    box-sizing: border-box;
    background-position: center center;

}

.tema-claro {
    background-color: white;
}

.tema-claro .contact{
    color: black;
}


/* Tema Oscuro */

.tema-oscuro {
    background-color: black;
}

.tema-oscuro .titulo{
    color: white;
}

.tema-oscuro .contact{
    color: white;
}

.contact:hover{
    color: #05ADEA;
}