@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {font-family: "Roboto", sans-serif;}
a {text-decoration: none;}
p {margin: 0;}
button {border: none; cursor: pointer;}

:root {
    --button-color: #B9DAED;
    --game-card-color: #5F758F;
}

body{
    width: 100vw;
    height: 100vh;
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    background: black;
    overflow: hidden auto;
    font-size: 40px;
    color: white;

    &::-webkit-scrollbar {
        color: transparent;
        width: 0;
    }

    &::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    &::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

.scroller {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(to bottom, #5F758F 0%, #252D39 41%, #131921 100%);
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.BoldText {
    font-weight: bold;
}