:root{
    --text-color: 200, 200, 255;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;

    user-select: none;

    background-color: rgb(20, 20, 20);
    color: rgb(var(--text-color));

    font-family: 'Lexend', serif;
    text-align: center;
    overflow-y: hidden;
}

body {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.fade-out {
    opacity: 0;
}

body.fade-in {
    opacity: 1;
}

.msw{
    transition: all 0.1s ease-in-out;
    border-radius: 8px;
    padding: 1px;
}

.msw:hover{
    margin: 5px;
    padding: 1px 5px;
    border-radius: 8px;
    background: rgb(var(--text-color));
    color: rgb(40, 40, 40);
}

.main-title-container{
    font-size: 72px;
    font-weight: bold;
}

.main-title-accent{
    background-color: rgb(var(--text-color));
    color: rgb(40, 40, 40);
    padding: 0.5rem;
    border-radius: 1rem;

    font-size: 72px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-wrap: nowrap;
}

.main-title-accent:hover{
    background: rgb(40, 40, 40);
    color: rgb(var(--text-color));
    padding: 1rem;
}

.main-subtitle-container{
    font-size: 20px;
    font-weight: 500;

    margin-top: 2rem;
}

.main-button{
    background: rgb(var(--text-color));
    color: rgb(40, 40, 40);

    font-size: 24px;
    font-weight: 600;
    text-decoration: none;

    width: 80px;
    height: 100px;
    
    border-radius: 0.5rem;
    padding: 1rem 2rem;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    transition: all 0.2s;
}

.main-button:hover{
    transform: scale(0.98);
    border-radius: 1rem;
}

.main-button:active {
    transform: scale(0.95);
}

.main-button-empty{
    background: rgb(40, 40, 40);
    color: rgb(var(--text-color));
    border: none;
    border-radius: 0.5rem;
    width: 132px;
    height: 132px;
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.main-button-empty:active{
    color: rgb(20, 20, 20);
}

.main-buttons-container{
    margin-top: 1rem;
    gap: 1rem;
    display: flex;
    padding: 1rem;
    border-radius: 1rem;
    border: solid 2px;
    transition: all 0.2s ease-in-out;
}

.container-for-buttons-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 4rem;
}

@media (max-width: 600px){
    .container-for-buttons-container{
        transform: scale(0.6);
    }

    .main-title-container{
        transform: scale(0.5);
    }

    .main-subtitle-container{
        margin-top: -1rem;
    }
}



/* 
.leaderboard-btn{
    position: absolute;
    bottom: 2rem;
    font-size: 64px;
    cursor: pointer;

    color: var(--primary-color);

    transition: all 0.3s;
}

.leaderboard-btn:hover{
    bottom: 1.6rem;
} */