@font-face {
  font-family: 'Prompt';
  src: url('../fonts/Prompt-Bold.ttf') format('truetype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: 'Prompt';
}

/* MAIN SECTION */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../../assets/images/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* OVERLAY */
.shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* CONTENT */
.content {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 80%;
  margin-bottom: 50px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
}

/* BUTTON */
.button {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1.4rem;
  text-decoration: none;
  color: #ffffff;
  background: #ed2680;
  border-radius: 0.7rem;
  transition: all 0.3s ease;
}

.button:hover {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background-color: #000;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
}

footer a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.7px;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner {
    background-image: url('../../assets/images/bannerm.jpg');
    height: 100vh;
  }

  .content {
    max-width: 90%;
  }

  .content h1 {
    font-size: 2.2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .button {
    font-size: 0.95rem;
    padding: 0.8em 2em;
  }
}
