body {
    color: antiquewhite;
    font-family: "Akatab", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../img/game_background_theme/bg_el_pollo_locco_1.png);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

canvas {
    width: inherit;
    height: inherit;
}

.pointer {
    cursor: pointer;
}

.intro-img {
    height: inherit;
    width: inherit;
    z-index: 1;
}

.container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100svh;
}

.canvas-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 720px;
    height: 480px;
}

canvas {
    background-color: black;
}

.play-button {
    position: absolute;
    top: 10%;
    left: 40%;
    width: 100px;
    height: 50px;
    font-size: 20px;
    font-weight: 800;
    background-color: #FFDA00;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.play-button::before {
    width: 0;
    height: 0;
    background-color: #FFB700;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid black;
}

.start-game-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.contol-info-settings {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: #ffffff;
}

.contol-info-settings a {
    color: black;
    text-decoration: none;

}

.game-over {
    position: absolute;
    height: inherit;
    width: inherit;
    z-index: 3;
}

.game-over-container,
.game-over-img {
    width: inherit;
    height: inherit;
}

.buttons-mobile {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: inherit;
    height: inherit;
}

.buttons-mobile img {
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.sound-button {
    position: absolute;
    top: 8px;
    right: 8px;
}

sound-button img {
    width: 30px;
    height: 30px;
}

.info-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #EC680E;
    width: inherit;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.muteButton {
    position: absolute;
    width: inherit;
    height: inherit;
    top: 10%;
    right: 10%;
}

.control-info {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.controls {
    display: flex;
    gap: 24px;
    padding: 16px 16px 16px 16px;
}


.landscape {
    background-color: #FF9247;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 3;
}

.landscape img {
    width: 300px;
    height: 300px;
}


@media (max-height: 430px) {


    .start-game-section,
    .intro-img,
    .canvas-container,
    .buttons-mobile,
    canvas {
        height: 100vh;
        width: 100vw;

    }

    .contol-info-settings {
        width: 100vw;
    }

    .play-button {
        top: 10%;
        left: 40%;
    }

    .game-over-img {
        aspect-ratio: 1/1;
    }

}

@media (max-height: 430px) {
    .buttons-mobile img {
        width: 24px;
        height: 24px;
    }

    .controls {
        gap: 16px;
        padding: 8px 8px 8px 8px;
    }
}

.d-none {
    display: none;
}
