html, body {
    height: 100%;
    width: 100%;
}

html {
    display: block;
    font-size: 20px;
    scroll-behavior: smooth;
    
}

body {
    padding: 0;
    margin: 0;
    background-color: #efe1e7;
}

* {
    box-sizing: border-box;
    font-size: 16px;
}

@font-face {
    font-family: 'Aller Std 1';
    src: url('/media/font/aller_bd.ttf');
}


@font-face {
    font-family: 'Aller Std 4';
    src: url('/media/font/aller_lt.ttf');
}

footer {
    height: 70px;
    background-color: #4c0c1f;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer h3 {
    font-size: 15px;
    font-family: 'Aller Std 4';
    color: #dbced2;
}

@media only screen and (orientation: portrait) and (max-width: 767px) {
    footer h3 {
        font-size: 3vw;
    }
    
}