@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
}

:root {
    --heightRatio: 1;
    --defaultFontSize: calc(16px * var(--heightRatio));
}

body {
    user-select: none;
    -webkit-user-select:none;
    background-color: black;
    font-family: "M PLUS 1", sans-serif;

    overflow: hidden;
}

.main {
    margin:  0 auto; 
    background-color: white;
    display: flex;
    justify-content: center;
    position: relative;
}