:root {
  --primary-red: #9a0000;
  --primary-blue: #044ba6;
  --dark-gray: #48494b;
  --light-gray: #d3d3d3;
  --bg-light: #f2f2e6;
  --white: #ffffff;
  --shadow: rgba(154, 0, 0, 0.05);
  --navbar-height: 72px;
}

/* HEADER */
.header {
  min-height: 45vh;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/*CTA Button formatting*/
.cta-btn {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 3rem 0.85rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: grid;
  transition: all 0.3s;
  border: 2px solid var(--white);
  margin-top: 2rem;
}

/*CTA Button formatting when hovering*/
.cta-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

/*tbd Button formatting*/
.tbd-btn {
  background: var(--bg-light);
  color: var(--dark-gray);
  padding: 0.75rem 3rem 0.85rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: grid;
  transition: all 0.3s;
  border: 2px solid var(--white);
  margin-top: 2rem;
  cursor: default;
}

/*tbd Button formatting when hovering*/
.tbd-btn:hover {
  background: var(--dark-gray);
  color: var(--bg-light);
}

@media (max-width: 900px) {
 .cta-btn {
  font-size: 1rem;
 }
}

@media (max-width: 480px) {
  .cta-btn {
  font-size: 1ren;
 }
}