@font-face {
    font-family: pompiere;
    src: url("fuentes/Pompiere-Regular.otf")

}

@font-face {
    font-family: montserrat;
    src: url("fuentes/Montserrat-Regular.otf")
    
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2.5vh 5% 2.5vh 5%;
    background-color: #fde5e5;
}

/* --- ENCABEZADO --- */

header {
    flex-basis: 12vh;
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.logo img {
    width: 50px;
}

.logo h3 {
    font-family: pompiere, sans-serif;
    color: #F75F6B;
    font-size: 1.6rem;
}

.logo p {
    font-family: montserrat, sans-serif;
    font-size: 0.6rem;
}

.menu {
    display: flex;
    align-items: center;
    font-family: pompiere, sans-serif;
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #6d479c;
    list-style: none;
}

.menu li {
    padding-left: 3rem;
}

.menu a {
    text-decoration: none;
    color: #6d479c;
}

.menu a:hover {
    color: #f75f6b;
}

/* --- PRINCIPAL --- */
main {
    flex-basis: 75vh;
    display: flex;
}

.contenido {
    flex-basis: 55%;
    padding: 0 11% 0 21%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.contenido h1 {
    font-family: pompiere, sans-serif;
    font-size: 3.6rem;
    color: #f75f6b;
    text-align: center;
}

.contenido p {
    color: #6d479c;
    text-align: justify;
    font-size: 1rem;
}

.boton {
    padding-top: 15px;
}

.boton button {
    border: none;
    color: white;
    background: #a7b3dd;
    width: 160px;
    border-radius: 20px;
    padding: 0.6rem 0 0.6rem 0;
    font-weight: bold;
    font-size: 1rem;
    font-family: montserrat, sans-serif;
    margin: auto;
    display: block;
    transition: background 0.5s;
}

.boton button:hover {
    background-color: #F75F6B;
    cursor: pointer;
}

.imagen {
    flex-basis: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen img {
    width: 75%;
}

/* --- PIE DE PÁGINA --- */
footer {
    flex-basis: 8vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

footer p {
    font-family: pompiere, sans-serif;
    font-size: 1rem;
    color: #6d479c;
}

/* --- IMAGENES DE FONDO ---*/

.superior {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 25%;
}

.inferior {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 35%;
}