/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set up some basic styles for the page */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

header img {
  max-width: 200px;
}

main {
  margin-top: 40px;
}

.hero {
  position: relative;
  padding: 40px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.midjourney.com/90f940fd-7fce-48f6-b852-26c89c3d9294/grid_0.png');
  background-position: center;
  background-size: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px #000;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px #000;
}

.hero p {
  font-size: 24px;
  margin-bottom: 20px;
  text-shadow: 2px 2px #000;
}

#countdown-timer {
  font-size: 32px;
  font-weight: bold;
  margin-top: 40px;
}

footer {
  margin-top: 40px;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #999;
}
