/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   .win98-window {
  font-family: Arial, sans-serif;
  width: 220px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #fff inset, -2px -2px 0 #808080 inset;
  background: #c0c0c0;
}
.win98-titlebar {
  background: linear-gradient(90deg, #000080, #1084d0);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.win98-titlebar-left { display: flex; align-items: center; gap: 4px; }
.win98-win-controls { display: flex; gap: 2px; }
.win98-btn {
  width: 16px; height: 14px;
  background: #c0c0c0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  font-size: 9px;
  font-weight: bold;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #000;
}
.win98-menubar {
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  padding: 2px 4px;
  font-size: 11px;
  display: flex;
  gap: 8px;
}
.win98-menubar span { padding: 2px 6px; cursor: pointer; color: #000; }
.win98-menubar span:hover { background: #000080; color: #fff; }
.win98-body { padding: 6px; background: #c0c0c0; }
.win98-frame {
  background: #000;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.win98-slide { display: none; font-size: 60px; width: 100%; height: 100%; align-items: center; justify-content: center; }
.win98-slide.active { display: flex; }
.win98-slide img { width: 100%; height: 100%; object-fit: cover; image-rendering: pixelated; }
.win98-status {
  background: #c0c0c0;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  font-size: 10px;
  padding: 2px 6px;
  margin-top: 4px;
  color: #000;
}
.win98-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}
.win98-nav-btn {
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  cursor: pointer;
  color: #000;
}
.win98-nav-btn:active {
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.win98-counter {
  font-size: 10px;
  padding: 2px 6px;
  background: #c0c0c0;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  min-width: 40px;
  text-align: center;
  color: #000;
}
.win98-dots-row { margin-top: 4px; display: flex; gap: 3px; justify-content: center; }
.win98-dot {
  width: 10px; height: 10px;
  background: #808080;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.win98-dot.active {
  background: #000080;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
}

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.03) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
}
.my-menu {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.menu-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #ff1493;
}