/*background color*/
body {
    margin: 0;
    min-height: 100vh;
    background-image: url("/Assets/Background.png");
    background-position: center; 
    background-repeat: repeat;
    background-attachment: fixed; 

    display: flex;
    flex-direction: column;
}

/*Font*/
@font-face {
    font-family: "GameFont";
    src: url("/Assets/ThaleahFat.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: "GameFont", sans-serif;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;

    background-image: url("/Assets/Navigation\ Bar/Blank\ Background.png");
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    z-index: 1000;
}

.nav-button {
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.nav-button img {
    display: block;
    width: 100px;
    height: auto;
}

.nav-button:hover img {
    transform: scale(1.05);
}

/* Play dropdown 
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;

    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);

    background: transparent;
    padding-bottom: 10px;
}

.dropdown-content a {
    display: block;
    padding: 5px;
}

.dropdown-content img {
    display: block;
    width: 120px;
}

.dropdown-content a:hover img {
    transform: scale(1.05);
}

.dropdown:hover .dropdown-content {
    display: block;
}*/