﻿@import '../common.scss';

CreateLobby {
    cursor: none;
    position: absolute;
    opacity: 1;
    transition: all 0.5s;
    width: 100%;
    height: 100%;

    .back-button {
        position: absolute;
        margin-top: 40px;
        margin-left: 40px;
        text-stroke: 8px black;
        font-size: 48px;
        gap: 12px;
        align-items: center;
        z-index: 100;

        > i {
            font-size: 64px;
        }

        &:hover:not(.hide) {
            transform: translateX(4px);
            sound-in: ui_button_hover;
        }
    }

    .layout {
        width: 100%;
        height: 100%;
        padding: 100px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .options {
        margin-top: auto;
        font-size: 32px;
    }

    .create-lobby-button {
        font-size: 64px;
        margin-top: auto;
        background-color: rgb(66, 118, 62);
        padding: 16px 32px;
        border-radius: 4px;
        box-shadow: 4px 4px 4px black;
        align-items: center;
        transform: skewX(-4px);
        text-shadow: 2px 2px black;

        > label {
            transform: skewX(4px);
        }

        &:hover {
            background-color: darken(rgb(66, 118, 62), 50%);
            sound-in: ui_button_hover;
        }
    }

    &.hide {
        opacity: 0;
        transform: translateX(-1080px);
    }
}