body {
    background-color: black;
    color: white;
    font-family: monospace, monospace;
    padding: 0px;
    margins: 0px;
}

.shopbutton {
    /*position: fixed;*/
    font-family: monospace, monospace;
    background: none;
    border: 2px dashed #444;
    color: #444;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    right: 260px;
    transition: 0.3s ease;
}
.shopbutton.active {
    border: 2px solid #fff;
    color: #fff;
    transition: 0.3s ease;
}

.grid {
    display: none;
}

.grid.active {
    display: grid;
    width: 75%;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.box {
    background: none;
    border: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.minicanvas1, .minicanvas2, .minicanvas3 {
    width: 100%;
    height: 100%;
    background-color: #111;
    border: 5px dashed #333;
}
.minicanvas1.selected, .minicanvas2.selected, .minicanvas3.selected {
    border: 5px dashed lime;
}

.invert {
    filter: invert(100%);
    overflow: hidden;
    mix-blend-mode: difference;

}


.bgvid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: fit;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    margin: 0;
    padding: 0;
}


.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    background-color: #000000;
    color: white;
    padding: 0px;
    display: flex;
    flex-direction: column;
    border: 3px solid white;
    transition: transform 0.2s ease-in;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: lime;
}

.content {
    padding: 20px;

}


/*@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }
}*/


.sidebar-button {
    position: fixed;
    background: none;
    border: 2px solid white;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    right: 260px;
    transition: 0.3s ease;
    width: 60px;
}

#toggle-button {
    top: 10px;
}

#theme-button {
    top: 60px;
}

#entry-button {
    top: 115px;
}


.sidebar-button:hover {
    background-color: white;
    color: black;
}

.hidden {
    transform: translateX(+100%);
}

.hiddenbtn {
    transform: translateX(+250px);

}

#pingpongcanvas {
    width: 75%;
    height: 75%;
    background-color: #111;
    user-select: none;
}

.hr-space {
  border: none;
  margin: 20px 0;
}

#cashlabel {
    display: none;
}

.footer {
  position: fixed;
  bottom: 0;
}

#fullscreenbutton1 {
    /*position: fixed;*/
    font-family: monospace, monospace;
    background: none;
    border: 2px solid lime;
    color: lime;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    right: 260px;
    transition: 0.3s ease;
}