@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700&display=swap');
:root {
    --white: #F2F2F2;
    --green: #6D8474;
    --brown: #3F3939;
    --gray: #353535;
}

* {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--white);
    font-size: 100%;
}

.preload *:not([data-aos]) {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ---- Button ---- */

.btt-main {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 1em;
    width: max-content;
    padding: 0.4rem 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: white;
    font-size: 1.8em;
    font-weight: 300;
    transition: background-color 500ms, color 500ms, letter-spacing 500ms;
    cursor: pointer;
}


/*.btt-main.mobile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btt-main.mobile img {
    width: 1.2em;
}*/

.btt-main:hover {
    background-color: white;
    color: black;
    letter-spacing: 0.2rem;
}

#landing .btt-main,
#menu .btt-main {
    position: absolute;
    left: 95%;
    top: 95%;
    transform: translate(-100%, -100%);
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
    }
}


/* ALERT */

#scroll-alert {
    content: url("../content/arrow_down.svg");
    opacity: 0;
    transition: opacity 500ms;
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4em;
}

#scroll-alert.active {
    animation: alertScroll 3s infinite;
}

@keyframes alertScroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}