* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.header {
  padding: 20px 0;
  text-align: center;
}

.logo {
  width: 150px;
  height: auto;
}

.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

h1 {
  font-size: 4em;
  margin-bottom: 20px;
  color: white;
}

p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: white;
}

.notify-form {
  display: flex;
  justify-content: center;
}

.notify-form input[type="email"] {
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  width: 250px;
}

.notify-form button {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  margin-left: 10px;
}

.notify-form button:hover {
  background-color: #ccc;
}

footer {
  padding: 20px 0;
  background-color: black;
}

.social-media {
  margin-bottom: 20px;
}

.social-media a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5em;
  text-decoration: none;
}

.email-link {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

p {
  margin-top: 10px;
  color: white;
}

.email-link:hover {
  text-decoration: underline;
}
