@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/chalkboard');

/* 
    font-family: "Montserrat", sans-serif;
    font-family: "Red Hat Display", sans-serif;
    font-family: 'chalkboard', sans-serif;
*/

:root{
    --red: Arial, Helvetica, sans-serif;
    --mon:"Montserrat", sans-serif;
    --yellow:#FED876;
    --rojo:#FE8B76;
}

*{
    margin:0;
}

body::-webkit-scrollbar{
    display: none;
    font-family: Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
}

.soon{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background-image: radial-gradient(circle, #FE8B76, #E97C6C, #D36D62, #BC5D58, #A64E4E);
}


.opac{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1;
    opacity: 0%;
}

.titulo{
    color:white;
    font-family: var(--mon);
    font-size: 40px;
    text-align: center;
    z-index: 3;
}

.disclaimer{
    color:white;
    font-family: var(--red);
    font-size: 22px;
    text-align: center;
    width: 500px;
    z-index: 3;
}

.row{
    display: flex;
    margin-top: 20px;
    z-index: 3;
}

.CTA{
    font-family: var(--red);
    text-decoration: none;
    color:white;
    margin: 10px;
    padding: 14px 24px;
    border: solid 2px white;
    transition: all 400ms ease;
}

.CTA:hover{
    transition: all 400ms ease;
    background-color: var(--rojo);
}


@media (max-width:550px) {
    .titulo{
        width: 300px;
    }

    .disclaimer{
        width: 300px;
        font-size: 16px;
    }
}