body {
  margin: 0;
  background: #ffffff;
  font-family: Tahoma, sans-serif;
  overflow: hidden;
}

/* Desktop */
#desktop {
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* Icons */
.icon {
  position: absolute;
  width: 90px;
  text-align: center;
  color: rgb(0, 14, 170);
  cursor: default;
}

.icon img {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}
.archive-icon img {
   width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}

#menubar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #c0c0c0;
  border-bottom: 2px solid #000;
  display: flex;
  z-index: 9999;
}

.menu-item {
  padding: 5px 10px;
  position: relative;
  cursor: default;
}

.menu-item:hover {
  background: #000080;
  color: white;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #c0c0c0;
  border: 2px solid #000;
  min-width: 150px;
}

.dropdown div {
  padding: 5px;
}

.dropdown div:hover {
  background: #000080;
  color: white;
}

/* show dropdown */
.menu-item:hover .dropdown {
  display: block;
}

/* push desktop content down so it's not hidden */
#desktop {
  padding-top: 30px;
}

/* Windows */
.window {
  position: absolute;
  width: 460px;
  height: 400px;
  background: #9d9d9d;
  border: 2px solid #000080;
  box-shadow: 4px 4px 0 #333;
  display: none;
  flex-direction: column;
}

/* NEWSLETTER WINDOW ONLY */
#win1 {
  width: 460px;
  height: 500px;
}

/* Title bar */
.title-bar {
  background: linear-gradient(#000080, #0000aa);
  color: white;
  padding: 5px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.close {
  background: rgb(152, 33, 97);
  padding: 2px 6px;
  cursor: pointer;
}

/* Content */
.content {
  padding: 10px;
  font-size: 12px;
  overflow: auto;
  background: #c0c0c0;
  height: 100%;
  color: rgb(11, 11, 11);
}

/* Fullscreen artwork */
.fullscreen {
  width: 100vw !important;
  height: 90vh !important;
  left: 0 !important;
  top: 45px !important;

}

.fullscreen .content {
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
  
}

.fullscreen img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  }

body.flipped {
  transform: rotate(180deg);
  transform-origin: center;
}


