/* FULL PAGE FIX */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* GENERAL STYLES */
body {
  background: url("https://upload.wikimedia.org/wikipedia/commons/e/e2/Animated_y2k_nightclub_floor.gif") no-repeat center center fixed;
  background-size: cover;
  color: #00ffff;
  font-family: 'VT323', monospace;
  text-align: center;
  cursor: url("images/curser.png"), auto;
}

/* Hover cursor for everything interactive */
a:hover,
button:hover,
img:hover,
div:hover,
span:hover,
marquee:hover {
  cursor: url("images/select.png"), auto;
}


/* LANDING PAGE */
marquee {
  background: black;
  color: hotpink;
  padding: 6px;
  font-size: 20px;
}

.container {
  margin-top: 60px;
  border: 3px ridge cyan;
  display: inline-block;
  padding: 20px 40px;
  background: rgba(0,0,0,0.7);
}

h1 {
  color: #ff00ff;
  text-shadow: 2px 2px #00ffff;
}

.enter-button {
  color: yellow;
  font-weight: bold;
  font-size: 24px;
  padding: 10px 20px;
  border: 2px solid cyan;
  background: black;
  text-decoration: none;
}

.enter-button:hover {
  background: cyan;
  color: black;
}

/* DESKTOP PAGE */
#desktop {
  background: url("images/bg.gif") no-repeat center center fixed;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* Icons */
.icon {
  display: inline-block;
  text-align: center;
  margin: 20px;
  cursor: pointer;
  color: cyan;
}

.icon img {
  display: block;
  margin: 0 auto;
}

/* POPUP WINDOW */
.window {
  position: fixed;       /* relative to screen */
  top: 50%;              /* center vertically */
  left: 50%;             /* center horizontally */
  width: 80vw;           /* 80% of screen width */
  height: 70vh;          /* 70% of screen height */
  transform: translate(-50%, -50%); /* center exactly */
  border: 3px outset cyan;
  background: #c0c0c0;
  box-shadow: 5px 5px 15px black;
  z-index: 100;
}

.window-header {
  background: navy;
  color: white;
  font-weight: bold;
  padding: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}

.window iframe {
  width: 100%;
  height: calc(100% - 24px);
  border: none;
}
