@keyframes fadein {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}


.menu-mobile, li, nav ul li li, button, .tooltip {
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -o-transition: all 400ms;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Saira Semi Condensed", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #363636;
}

body {
    position: fixed;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 40px 1fr 25px;
    grid-template-columns: 250px 1fr 1fr;
    grid-template-areas:
        "header header header"
        "nav content content"
        "footer footer footer";
}


/* ###################################### */
/* ############ MEDIA QUERYS ############ */
/* ###################################### */

/* ############ TABLETS ############ */
@media screen and (max-width: 1024px) {
    body {
        grid-template-rows: 40px 1fr 20px;
        grid-template-columns: 100%;
        grid-template-areas:
            "header"
            "content"
            "footer";
    }
}


/* ############ MOBILE ############ */
@media screen and (max-width: 480px) {
    body {
        grid-template-rows: 35px 1fr 15px;
        grid-template-columns: 100%;
        grid-template-areas:
            "header"
            "content"
            "footer";
    }
}