/* general */
@font-face {
    font-family: 'GT Walsheim';
    src: url('../font/GT-Walsheim-Regular.woff2') format('woff2'),
         url('../font/GT-Walsheim-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'GT Walsheim', sans-serif;
}
:root {
    --WhiteColor: white;
    --BlackColor: #000000;
    --MenuBackground: #f4f4f4;
}

/* footer */
.footer-section {
    margin-top: 6vh;
    position: relative;
    width: 100vw;
    height: 10vh;
    padding: 0.4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}
.footer-section a {
    color: black;
    transition: all 150ms ease;
}
.footer-section a:hover {
    color: orange;
}