/* Color scheme */
body {
  background-color: #030303;
  margin: 0;
  padding: 0;
}

/* TYPOGRAPHY */
h1 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
}

h2 {
  margin: 0;
}

.great-vibes {
  font-family: "Allura", cursive;
  margin-bottom: 10px;
}

/* COLORS */
.red {
  color: #b90707;
}

.white {
  color: white;
}

/* HERO SECTION */
.text {
  min-height: 100vh; /* FIXED */
  width: 100vw;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  text-align: center;
}

.header h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 10px;
}

.header h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* CORNERS */
.left-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: clamp(150px, 25vw, 250px) solid #b9070787;
  border-right: clamp(150px, 25vw, 250px) solid transparent;
}

.right-corner {
  position: absolute;
  top: 0;
  right: 0;
  border-top: clamp(150px, 25vw, 250px) solid #b907077f;
  border-left: clamp(150px, 25vw, 250px) solid transparent;
}

/* NAV */
header {
  background: #5c0605;
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 5px 10px;
}

nav a:hover {
  background: #555;
  border-radius: 5px;
}

/* SIGNUP SECTION */
.direction {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 80px 20px;
  color: white;
}

/* HEADER BOX */
.mid-header {
  background-color: rgba(128, 128, 128, 0.6);
  padding: 20px 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* DOWNLOAD BUTTON */
.download {
  background-color: #555;
  padding: 15px 25px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  margin-bottom: 40px;
  transition: 0.3s;
}

.download:hover {
  transform: scale(1.05);
}

/* BUTTON CONTAINER */
.signup-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* SIGNUP BUTTONS */
.sign-up-icon {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 220px;
  height: 120px;

  background: linear-gradient(145deg, #b90707, #930504);
  color: white;
  text-decoration: none;

  border-radius: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;

  box-shadow: 0 10px 25px rgba(185, 7, 7, 0.4);
  transition: all 0.25s ease;
}

.sign-up-icon:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(185, 7, 7, 0.6);
}

.sign-up-icon:active {
  transform: scale(0.95);
}

/* EMAIL */
.more-info {
  color: white;
}

/* FOOTER */
footer {
  text-align: center;
  color: white;
  padding: 20px;
}
