@media only screen and (max-width: 600px) {
    .select-player {
        height: 70% !important;
    }

    .select-player img {
        display: block !important;
        margin: auto !important;
        width: 80% !important;
        filter: brightness(100%) !important;
    }

    .bot-panel {
        display: block !important;
        height: 10% !important;
    }

    #male {
        display: none;
    }
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: "Poppins-Bold";
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: "Press Start";
    src: url(../fonts/PressStart2P.ttf);
}

@keyframes enlarge {
    to { 
        transform: scale(1.1);
        filter: brightness(100%);
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Tahoma", "Arial", sans-serif;
}

html {
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #000;
}

h1 {
    color: #FFF;
    font-family: "Press Start";
    font-size: clamp(1px, 4vw + 2rem, 80px);
    text-align: center;
    text-shadow: 10px 10px 0px #000;
}

a {
    height: 100%;
}

button {
    display: block;
    margin: auto;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.navbar {
    position: fixed;
    width: 100%;
    height: 10%;
    z-index: 100;
}

.navbar img {
    position: relative;
    margin-left: 3%;
    min-width: 100px;
    width: 10%;
    height: 100%;
    object-fit: contain;
}

.play-button {
    position: relative;
    margin-top: 30%;
    min-width: 100px;
    width: 10%;
    animation: pop-up, wobble;
    animation-duration: 1s, 1s;
    animation-delay: 0s, 1s;
    animation-iteration-count: 1, infinite;
}

.play-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.top-panel {
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: center;
    align-items: center;
}

.select-player {
    display: flex;
    width: 100%;
    height: 80%;
    justify-content: space-around;
    align-items: center;
}

.select-player img {
    max-width: 350px;
    min-width: 150px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    filter: brightness(20%);
}

.select-player img:hover {
    animation: enlarge 0.5s forwards;
}

.select-player img:not(:hover) {
    animation: shrink 0.5s forwards;
}

.bot-panel {
    display: none;
    width: 100%;
    height: 0%;
}

.bot-panel button {
    padding: 5%;
    width: 30%;
    height: 100%;
    background-color: transparent;
    border: none;
}

.bot-panel button img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: side-move 1s infinite linear;
}

#character {
    background-repeat: no-repeat;
    background-size: cover;
}

#banner video {
    position: absolute;
    display: block;
    margin: auto;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#character {
    background-image: url("../img/background/BG.png");
}

