html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  display: table;
  margin: auto;
}

body {
  background-image: url("images/spades.gif");
  color: white;
  display: table-cell;
  font-family: Verdana, sans-serif;
  vertical-align: middle;
  background-color: white;
  /* fixed width so it always looks like desktop */
  min-width: 1024px;
}

/* ----- LOGO ----- */
.logo {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.logo img {
  max-width: 100%;
  height: auto;
}

/* ----- CONTAINER ----- */
.container {
  width: 90%;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 20px;
}

/* ----- IMAGES ----- */
.tzual {
  height: 200px;
  width: 200px;
}

.dance {
  float: right;
  height: 120px;
  width: 100px;
}

.ryu {
  height: 100px;
  width: 120px;
}

.putt {
  height: 120px;
  width: 100px;
}

.games {
  width: 40%;
  height: 40%;
}

.hero {
  width: 95%;
  height: 95%;
}

.desktop-icons {
  height: 40px !important;
  width: 40px !important;
}

.cs-progress-bar {
  align-self: center;
}

.construction {
  display: block;
  margin: 20px auto;
  width: 200px;
  height: 160px;
}

/* ----- IMAGE GRID ----- */
.pics {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pics img {
  width: 70px;
  height: auto;
}

.nintendogs {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

/* ----- BANNERS ----- */
.banners {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-top: 2px solid white;
  z-index: 1000;
}

.banners img {
  width: 260px;
  height: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* fun hover effect */
.banners img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}


/* ----- DESKTOP ICON BAR ----- */
.desktop-bar {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px;
  border: 1px solid white;
  border-radius: 6px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.desktop-bar img {
  height: 48px;
  width: 48px;
  transition: transform 0.15s ease, filter 0.15s ease;
  cursor: pointer;
}

.desktop-bar img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}
