html {
    width: 100vw;
    height: 98vh;
    display: flex;
    color: #15171a;
    font-family: 'Lato';
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather';
}

#mainHeader {
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
    margin: 0 0 0 0;
}

#mainHeader a {
    color: #ffffffff;
}

#mainHeader.scrolled {
    background-color: #15171a;
    color: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#logo-cabecera {
    width: 20%;
    height: 60%;
    background-image: url('../images/logo_light.svg');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}

#mainHeader #logo-cabecera {
    height: 60%;
    visibility: hidden;
}

#mainHeader.scrolled #logo-cabecera {
    visibility: visible;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.divPage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: left;
    box-sizing: border-box;
}

.divSide {
    width: 35%;
    height: 100%;
    color: white;
    background-color: #15171a;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.divSide h1 {
    padding-top: 50px;
}

.divParagraph {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

.divPageContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clickable {
    cursor: pointer;
}

#divMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px 30px 20px 30px;
    gap: 20px;
}

#welcome {
    height: 100vh;
    justify-content: space-evenly;
    background-image: url('../images/main_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#divSubtitle {
    height: fit-content;
    max-width: 512px;
    border-radius: 10px;
    display: flex;
    align-items: left;
    padding: 20px 50px 20px 50px;
    background-color: white;
    margin-left: 20px;
    margin-right: 20px;
}

#logo-principal {
    width: 25%;
    height: 20%;
    background-image: url('../images/logo.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.solo-movil {
    display: none;
}

@media screen and (max-width: 768px) {
    #logo-cabecera {
        display: none;
    }

    #logo-principal {
        display: none;
    }

    #divMenu {
        justify-content: space-evenly;
    }

    .solo-movil {
        display: flex;
    }
}

#divSubtitle p {
    white-space: pre-wrap;
}
