html, body {
    height: 100%;
    width: 100%;
}
*{
    padding: 0px;
    margin: 0px;
}
:root {
    --bgColorDark: #51545A;
    --bgColorLight: #fff;
    font-size: 20px;
}
body{
    background-color: var(--bgColorDark);
}
a{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
svg{
    max-width: 80vw;
}