body {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  color: white;
  padding: 10px;
}

.footer {
  background-color: black;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
}

.logo-column {
  flex: 1;
}

.text-column {
  flex: 2;
  text-align: left;
}

.header img {
  height: 100px; /* Adjust the height as needed */
}

.title {
  font-size: 40px;
  text-align: center;
}

.buy {
  font-size: 15px;
  text-align: right;
  flex: 1;
}

.subheader {
  font-size: 12px;
  text-align: center;
}

a {
  text-decoration: none;
  color: black;
}

.nice-button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background-color: rgb(165, 132, 0);
  border: 2px solid black;
  border-radius: 5px;
  transition: transform 0.2s;
  font-weight: bold;
}

.nice-button:hover {
  transform: scale(1.1);
}

#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.header, .footer, .subheader, .title, .buy {
  position: relative;
  z-index: 1;
}