body {
    margin: 0;
    background: #000;
    font-family: "Courier New", monospace;
    color: white;
}

.window {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    border: 2px solid white;
    box-sizing: border-box;
}

main {
    flex: 1;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.taskbar {
    background: #000;
    border-top: 2px solid white;

    display: flex;
    align-items: stretch; 
    height: 50px;
}

.taskbar button {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: inherit;
    font-size: 13px;

    padding: 0 16px;
    margin: 0;

    background: black;
    color: white;
    border: none;
    border-right: 2px solid white;

    cursor: pointer;
    transition: 0.15s;
}
.logo-btn {
       padding: 0;
}


.taskbar button:hover {
    background: white;
    color: black;
}

.taskbar button:active {
    background: #111;
}

.logo-btn {
    padding: 0px;
    border-right: 2px solid white;
}

.logo-btn img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.task-buttons {
    display: flex;
}

.task-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.social {
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 2px solid white;
    padding: 0 10px;
}

.social img {
    width: 18px;
    height: 18px;
    margin: 0 6px;
    filter: brightness(0) invert(1);
    cursor: pointer;
}

.lang {
    height: 100%;
    background: black;
    color: white;
    border: none;
    border-left: 2px solid white;
    padding: 0 10px;
}

.clock {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 12px;
    border-left: 2px solid white;
    font-size: 12px;
}

.desktop {

    justify-content: center;
    align-items: center;
    align-content: center;
}

.desktop  img{

    justify-self: center;
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-self: center;
}

main {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
}


.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  background: url("assets/vignette.png") center/cover no-repeat;
}

.desktop {
  position: absolute;
  inset: 0;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.desktop img{
    width: 31%;
}

.page {
    display: none;
}

.page.active {
    display: block;
    align-items: center;
    justify-content: center

}

#support, #about, #contacts .active {
    width: 50%;
}

#support {
    width: 50%;
    max-width: 100%;
}

#support .donate {
    width: 100%;
    display: flex;
    justify-content: start;
    padding-top: 2%;
}

#support .donate a {
    display: flex;
    justify-content: center;
    width: 10em;
    padding-right: 1%;
}

#support .donate img {
    max-width: 100%;
    height: auto;
}

#games {
    position: absolute;
    inset: 0; 
    overflow: hidden;
}

#games .game-list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#games .game-list img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}


.creditslist{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 999;
}

.creditslist p {
    opacity: 30%;
}

.logo-btn:hover img {
    filter: brightness(0) saturate(100%);
}