@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/Poppins/Poppins-Medium.ttf");
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
}

html {
    font-size: 18px;
}

* {
    font-family: 'Poppins';
    font-size: 1rem;
    /* font-size: 2.5vmin; */
    /*font-size: calc(0.3em + 1vw);*/
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    line-height: 19, 2px;
}

header {
    background: white;
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 100;
}

h1 {
    font-size: 3rem;
    /* font-size: calc(1em + 3vw); */
    font-family: 'Montserrat';
    margin: 0;
    text-align: center;
}

h2 {
    font-size: 3rem;
    /* font-size: calc(0.8em + 1vw); */
    font-family: 'Poppins-Medium';
    text-align: center;
}

h3 {
    font-size: 2rem;
    /* font-size: calc(0.5em + 1vw); */
    font-family: 'Montserrat', 'Poppins-Medium';
}

p {
    font-size: 1.1rem;
}

.button,
button {
    /*Cualquier botón*/
    padding: .7rem 1rem;
    background-color: #FEA342;
    border: 0;
    border-radius: 1rem;
    transition: 1s background-color;
    cursor: pointer;
}

.button:hover,
button:hover {
    /*Botón seleccionado*/
    background-color: #C96800;
}

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

ul {
    list-style: none;
}

#cookies {
    width: 100%;
    text-align: center;
    padding: 1vw;
    position: fixed;
    bottom: 0;
    background-color: white;
}

#cookies a {
    color: orange;
}

#cookies button {
    margin: 0.5vw;
}

#cookies p {
    margin: 0.5vw;
}

@media (max-width: 1000px) {
    html {
        font-size: 12px;
    }
    /* * {
        font-family: 'Poppins';
        font-size: 2vh;
        scroll-behavior: smooth;
        margin: 0;
        padding: 0;
    }
    h1 {
        font-size: 4vh;
        font-family: 'Montserrat';
        margin: 0;
        text-align: center;
    }
    h2 {
        font-size: 3vh;
        font-family: 'Poppins-Medium';
        text-align: center;
    }
    h3 {
        font-size: 2vh;
        font-family: 'Montserrat', 'Poppins-Medium';
    } */
    h2 {
        font-size: 2rem;
        font-family: 'Poppins-Medium';
        text-align: center;
    }
}