body{
    align-items: center;
    background-color: #f0ff9d;
    font-family: 'Orbitron', sans-serif;
}
div.landing {
    display: flex;
    flex-direction: column;
    background-color:  #f0ff9d;
    color: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 36px;
    align-self: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding-top: 5vh;
}
.search-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#game-search {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid rgb(255, 217, 0);
    border-radius: 6px;
    outline: none;
    font-family: Orbitron;
    background-color: black;
    color: white;
}
button.a {
    background-color: #ffeb37;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    margin:4px;
    border: 4px solid #000000;
    cursor: pointer;
    border-radius: 36px;
    font-family: 'Orbitron', sans-serif;
    width : 25%;
}
button.submit {
    background-color: #ffeb37;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    margin:4px;
    border: 4px solid #000000;
    cursor: pointer;
    border-radius: 36px;
    font-family: 'Orbitron', sans-serif;
}
button.submit:hover {
    background-color: #cebe2e;
    border-color: #ffeb37;
}
button.a:hover {
    background-color: #cebe2e;
    border-color: #ffeb37;
}
input.a{
    background-color: #ffef5e;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    margin:4px;
    border: 4px solid #000000;
    border-radius: 36px;
    font-family: 'Orbitron', sans-serif;
}
input.a:focus {
    outline: 3px solid #ffeb37;
    border-color: #ffeb37;
}
a.navbar-button, a.navbar-button-left, a.navbar-button-right {
    background-color: #000000;
    color: rgb(255, 217, 0);
    padding: 10px 20px;
    border: 4px solid rgb(255, 217, 0);
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
}
a.navbar-button-left{
    border-top-left-radius: 36px;
    border-bottom-left-radius: 36px;
}
a.navbar-button-right{
    border-top-right-radius: 36px;
    border-bottom-right-radius: 36px;
}
#score-display{
    user-select: none;
}
div.navbar {
    display: flex;
    position:fixed;
    width :100%;
    justify-content: center;
    scroll-padding-bottom: 20px;
    padding-bottom: 20px;
}
div.game-selection {
    display: grid;
    justify-content: center;
    margin-top: 20px;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
div.game-card {
    background-color: #f0ff9d;
    display: flex;
    justify-content: center;
    gap: 5px;
    border: 4px solid #000000;
    border-radius: 36px 0px 36px 0px;
    padding: 10px;
    flex-direction: column;
}
img.game-image {
    border: 4px solid #000000;
    border-radius: 36px;
    width: 50%;
    height: auto;
}
h1.game-title {
    color: rgb(0, 0, 0);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 2px 2px 4px #ffef5e;
}
button.play-button {
    background-color: #ffeb37;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border: 4px solid #000000;
    cursor: pointer;
    border-radius: 36px;
    font-family: 'Orbitron', sans-serif;
}
p.game-description {
    color: rgb(0, 0, 0);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 1px 1px 2px #ffef5e;
}
svg.gameWindow {
    border: 4px solid #000000;
    border-radius: 36px;
    background-color: #ffef5e;
    width: 60vh;
    height: 60vh;
}
h1.a{
    color: rgb(0, 0, 0);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 2px 2px 4px #ffef5e;
}
/* CONTACT PAGE STYLES */

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 320px));
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    height: 100%;
}

.contact-card {
    background-color: #ffef5e;
    border: 4px solid #000000;
    border-radius: 36px 0px 36px 0px;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-align: center;
}

.contact-card:hover {
    background-color: #ffeb37;
    transform: scale(1.03);
}

.contact-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.contact-value {
    font-size: 0.95rem;
    color: #000000;
    word-break: break-word;
}
div.toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
button.tool-button {
    background-color: #ffeb37;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border: 4px solid #000000;
    cursor: pointer;
    border-radius: 36px;
    font-family: 'Orbitron', sans-serif;
}
/* MOBILE FIX */
#game-window {
    user-select: none;
    -webkit-user-select: none;
}

body {
    user-select: none;
    -webkit-user-select: none;
}
@media (max-width: 700px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 90%;
    }

    div.landing {
        padding-top: 120px;
    }
    svg.gameWindow {
        width: 100vw;
        height: 100vw;
    }
}
.gameWindow {
    touch-action: none;
}