*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

#top-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: max(6vh, 50px);
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /*gap: 8px;*/
    padding: 0px 0px 0px 50px;
    z-index: 20;
}

.menu-link,
.dropdown-toggle {
    color: #ffffff;
    text-decoration: none;
    font: inherit;
    font-size: 1rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 10px 12px;
    height: 100%;
}

.menu-link:hover,
.dropdown-toggle:hover,
.menu-link:focus-visible,
.dropdown-toggle:focus-visible,
.dropdown-content a:hover,
.dropdown-content a:focus-visible {
    background-color: #4a4a4a;
    outline: none;
}

.menu-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #333333;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.dropdown-content a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 12px;
}

.menu-dropdown:hover .dropdown-content,
.menu-dropdown:focus-within .dropdown-content {
    display: block;
}

#social-overlay {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: max(4vh, 25px);
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #222222;
}

.x-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10px;
}

.x-link img {
    height: 60%;
    width: auto;
    display: block;
}

#title-image {
    display: block;
}

.about {
    background-color: #460404;
}

.about:hover {
    background-color: #700101;
}

.games, .games a{
    background-color: #011f3d;
}

.games:hover, .games a:hover {
    background-color: #02376d;
}
