* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

.bg-red {
  background-color: #e63946;
}

a:link {
  text-decoration: none;
}

.bg-pink {
  background-color: #f8caca;
}

section {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------- HERO -------- */
.hero {
  background: #e63946;
  color: white;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.hero .logo {
  font-size: 48px;
  font-weight: bold;
}

.hero .icons {
  display: flex;
  gap: 2px;
}

.hero .icons div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.scroll {
  position: absolute;
  bottom: 30px;
  font-size: 14px;
  opacity: 0.9;
}

/* -------- TAGLINE -------- */
.tagline {
  background: #f8caca;
  background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.6)), url("/img/rect1-1-0.svg") ;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 40px;
}

.tagline h1 {
  font-size: 45px;
  color: #ffffff;
}

.tagline span {
  color: var(--pro-font-primary-color);
  font-weight: bold;
  font-size: 55px;
}

/* -------- JOIN -------- */
.join {
  background: #e63946;
  color: white;
  padding: 80px;
  gap: 60px;
}

.join-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
}

.phone {
  width: 30vw;
  border-radius: 30px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* md */
@media (min-width: 768px) {
  .md-phone {
    width: 16vw;
    border-radius: 30px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
}

.join-text {
  max-width: 500px;
}

.join-text .join-header {
  font-size: 3vh;
  color: var(--pro-font-primary-color);
  font-weight: bold;
  line-height: 1.5;
}

.join-text .join-content {
  font-size: 2vh;
  margin-bottom: 20px;
  line-height: 1;
}

.join-text h2 {
  font-size: 45px;
  margin-bottom: 20px;
}

.play-btn {
  margin-top: 20px;
  width: 180px;
  height: 50px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 12px;
}

/* -------- PARTNER -------- */
.partner {
  background: #0b2c48;
  color: white;
  padding: 80px;
}

.partner-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.partner-left h2 {
  font-size: 45px;
  margin-bottom: 20px;
}

.partner-left .partner-header {
  font-size: 3vh;
  color: #cce3f2;
  font-weight: bold;
  line-height: 1.5;
}

.partner-left .partner-content {
  font-size: 2vh;
  margin-bottom: 20px;
  line-height: 1;
}

.partner-left p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #cce3f2;
}

/* -------- FOOTER -------- */
.footer {
  background: #e63946;
  flex-direction: column;
  padding: 60px;
  text-align: center;
  position: relative;
}

.footer .footer-header {
  opacity: 0.8;
  margin-bottom: 15px;
  color: var(--pro-font-primary-color);
}

.footer .link {
  display: flex;
  opacity: 0.9;
  margin-bottom: 5px;
  text-decoration: none;
  color: var(--pro-white-color);
}

.copyright {
  font-size: 12px;
  opacity: 0.8;
  max-width: 900px;
  position: absolute;
  bottom: 20px;
  color: var(--pro-white-color);
}
