@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");

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

body {
  font-family: "IBM Plex Sans", system-ui;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.752),
    rgba(17, 10, 2, 0.696)
  );
}
#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}

.coming-soon-container {
  padding: 0 20px;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin-bottom: 40px;
}
h1 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 3rem;
  margin-bottom: 20px;
  font-style: italic;
}

.message {
  color: white;
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 40px;
}

a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.copy {
  color: white;
  font-size: 0.6em;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 10px;
}
