
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

@font-face {
    font-family: "Geist";
    src: url("../fonts/Geist.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-back: #333333;
    --second-back: #222222;
    --main-text: #ffffff;
    --overlay: #aaaaaa;
}

html,
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px;
    height: 100dvh;
    width: 100dvw;
    overflow: hidden;
    background-color: var(--main-back);
}
    