
/* the background */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  /*
  background: repeating-linear-gradient(
    45deg,
    #0d0d0d,
    #0d0d0d 10px,
    #1a1a1a 10px,
    #1a1a1a 20px
  );*/
  background-image: url('patterns/patterndark.png');
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f0f0f0;
}

.container {
  display: flex;
  background-image: url('patterns/pattern.gif');
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  overflow: hidden;
  max-width: 800px;
  width: 90%;
}

/* container left side has an image */
.left-side {
  flex: 1;
  min-width: 200px;
}

.left-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* container right has the links and stuff */
.right-side {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-side h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  color: #ffffff;
}

.nav-links a {
  display: block;
  margin-bottom: 10px;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

/* nav links special stuff */

.boothgame {
  background-color: #3bd6a2;
}
.boothgame:hover {background-color: #43e8b1;}

.music {
  background-color: #4e6d4a;
}
.music:hover {background-color: #62875e;}

