* {
    box-sizing: border-box;
}


body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    font-family: 'zabras';
}


h1 {
    z-index: 3;
    position: absolute;
    top: 10px;
    font-size: 70px;
}


.h1_div {
    display: flex;
    justify-content: center;
}


a {
    z-index: 100;
    font-size: 40px;
}


.fullscreen {
    position: relative;
    width: 100vw;
    height: 100vh;
}


.fullscreenmake {
    width: 100vw;
    height: 100vh;
}


.background_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.legal_notice_mobile {
    display: none;
}

.window_for_back {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;

    .button_lose {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-direction: row;
    }


    .again {
        background-color: green;
        color: white;
        margin: 0;
    }


    .home {
        background-color: red;
        color: white;
        margin: 0;
    }
}


.relative {
    position: relative;
    display: inline-block;
}


.canva_main_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: relative;
    z-index: 2;
}


canvas {
    aspect-ratio: 16 / 9;
    position: relative;
    background-color: black;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-family: 'zabras';
}


.start_button_div {
    margin-right: 470px;
}


.start_button {
    position: absolute;
    top: 270px;
    z-index: 10;
}


button {
    font-family: 'zabras';
    width: 90px;
    height: 40px;
    z-index: 2;
    background-color: #ff9247;
    border: 2px solid white;
    color: white;
    border-radius: 20px;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background-color: #ff7a2a;
}


.icons_start {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}


.icons_start img {
    width: 35px;
    height: 35px;
    cursor: pointer;
}


.keyboard_explain {
    display: flex;
    flex-direction: row;
    z-index: 4;
}