* {
    padding: 0px;
    margin: 0px;
    border: 0px;
    outline: 0px;
}

/* fast reset */



html,
body {
    height: 100%;
    font-size: 62.5%;
    line-height: 1;
}

body {
    font-family: 'Merriweather Sans', Arial, sans-serif;
    font-size: 1.2rem;
    background-color: #efebe3;
    color: #454f63;
    overflow: hidden;
}

/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
    body {
        /* The hack for Safari */
        height: -webkit-fill-available;
    }
}


.egLoader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../images/icon_loader_f_bb_01_s1.gif) center no-repeat #efebe3;
}


.appear {
    transform-origin: center top;
    animation: show 1s both;
}

.disp1 {
    animation-delay: 0.1s;
}

.disp2 {
    animation-delay: 0.2s;
}

.disp3 {
    animation-delay: 0.3s;
}

.disp4 {
    animation-delay: 0.4s;
}

.disp5 {
    animation-delay: 0.5s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    50% {}

    100% {
        transform: translate(0, 0);
        opacity: 1;
        text-shadow: none;
    }
}

.center {
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
}


.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}

.hidden {
    display: none !important;
}

.logo {
    width: auto;
    height: 4rem;
    margin: 1rem;
}

.title {
    margin: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.subtitle {
    font-size: 1.2rem;
    padding: 1rem;
    text-align: right;
}

.linktitle {
    padding: 1rem;

}

footer {
    width: 100%;
    background-color: #FDFAF2;
    color: #454f63;
    text-align: center;
    padding: 20px 0;

    position: absolute;
    bottom: 0;
}

.footerlogo {
    width: 16rem;
    height: auto;
    margin: 1rem;
}