* {
  margin: 0;
  padding: 0;
}

body {
  background: black;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

/* ------------------------------------ TITLE */
.title-container {
  text-align: center;
  padding: 20px;
}

.title {
  font-family: "Alkatra", system-ui;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.title::before {
  content: "";
  position: absolute;
  background-color: #ff0000;
  height: 100%;
  width: 10px;
  top: 0;
  left: -20px;
  transform-origin: left center;
  transform: skewY(20deg);
}

.title::after {
  content: "";
  position: absolute;
  background-color: #ff0000;
  height: 100%;
  width: 10px;
  top: 0;
  right: -20px;
  transform-origin: right center;
  transform: skewY(-20deg);
}

/* ------------------------------------ HEADER */
.header-container {
  position: fixed;
  width: 100%;
  z-index: 1;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  color: white;
}

.header h1 {
  color: white;
  margin: 0;
}

.title .logo-title {
  width: 50px;
}

/* ------------------------------------ HORIZONTAL MENU */
.menu {
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #0000009c;
  padding: 10px;
  height: 110px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  transition: background-color 0.3s;
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
  margin-bottom: -85px;
}

.menu a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  height: 2px;
  background-color: #ff0000;
  transition: width 0.3s ease-in-out;
}

.menu a:hover:before {
  width: 100%;
}

.header .title-container .logo-title {
  width: 40px;
  position: relative;
  top: 5px;
  right: 1px;
}

/* ------------------------------------ CONTENT */
.main-content {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  height: 85vh;
}

.description {
  font-family: "Courier New", Courier, monospace;
  margin: 10px 0;
  text-align: center;
  width: 500px;
  min-width: 500px;
}

.store-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  font-size: 18px;
  font-family: "Courier New", Courier, monospace;
  color: white;
  background-color: #ff0000;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.store-button:hover {
  background-color: #cc0000;
}

/* ------------------------------------ FOOTER */
.footer {
  color: white;
  background-color: #0000000a;
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-around;
}

/* SOCIAL */
.social-wrapper {
  display: flex;
  gap: 10px;
  font-family: monospace;
}

.social-wrapper > div {
  text-align: center;
}

.social-wrapper > div + div {
  border-inline-start: 1px solid #d6cfcf;
  padding-inline-start: 10px;
}

.social-wrapper > div > p {
  margin-top: 10px;
  max-width: 200px;
}

.social-wrapper a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  background-color: #191919;
  color: #d5ad72;
  position: relative;
}

/* ------------------------------------ MEDIA QUERIES */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    min-width: auto;
    width: 100%;
    max-width: 100vw;
  }

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

  .menu {
    flex-direction: row;
    width: 100%;
  }

  .menu a {
    margin-bottom: 0;
    margin-top: 50px;
    font-size: 14px;
    text-align: center;
    padding: 10px;
  }

  .description {
    width: 300px;
    min-width: 300px;
  }

  .footer {
    padding: 10px 20px;
  }

  .footer-container {
    margin-top: 20px;
    font-size: 11px;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    margin-left: 15px;
  }

  .footer-container p {
    font-size: 11px;
  }

  .social-wrapper {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 30px;
  }

  .menu a {
    padding: 8px 10px;
  }

  .description {
    font-size: 14px;
  }

  .store-button {
    font-size: 14px;
  }
}
