@font-face {
    font-family: 'px_sans_nouveaux';
    src: url('fonts/px_sans_nouveaux.ttf');
}
body {
    background: url('images/neon_cyberpunk_image.png') no-repeat center center fixed;
    background-size: cover; /* Ensures the image scales dynamically */
    margin: 10px;
    padding: 10px;
    height: 100vh; /* Ensures the full height is covered */
    width: 100vw; /* Ensures the full width is covered */
    /*overflow: hidden; /* Prevents scrolling if unnecessary */
    overflow-y: auto;
    font-family: px_sans_nouveaux;
    font-size: 8px;
}
@media (max-width: 768px) {
    .icons img {
        width: 12vw;
        max-width: 40px;
    }
}
p {
    position: relative;
    bottom: 10px;
}
.desktop {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    padding: 2vh 2vw;
    position: relative;
    width: 100%;
    height: 100%;
}
.icons img {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 6em;
    height: auto;
    max-height: 48px;
}
#wip {
    position: relative;
    display: inline-block;
    text-align: center;
}
#mozzila {
    display: block;
    width: 60vw;
    max-width: 600px;
}
#construction {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    max-width: 300px;
    z-index: 1;
}
#wip h2 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%);
    background: rgba(255, 255, 0, 0.9);
    padding: 5px 15px;
    font-family: 'Courier New', monospace;
    color: #000;
    border: 2px dashed black;
    font-size: 1rem;
    z-index: 2;
}
#start-menu {
    position: fixed;
    bottom: 0;
    background-color: silver; 
    width: 100%;
    left: 0;
    right: 0;
    padding: 2px;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #4e4e4e;
}
button {
    background-color: silver;
    color: black;
    box-shadow: inset 1px 1px #dfdfdf,1px 0 #000,0 1px #000,1px 1px #000;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    margin-left: 2px;
    margin-bottom: 2px;
}
button img {
    position: relative;
    top: 2px;
}
