@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;900&family=Schibsted+Grotesk&display=swap");

* {
  text-decoration: none;
  color: #fff;
  cursor: default;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #161b1f;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-image: url(star.png);
}

span {
  color: #ff5555;
}

h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.2;
  max-width: 90%;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80vh;
  padding: 0 20px;
}

.header-title {
  align-items: center;
  text-align: center;
  padding-top: 230px;
}

.box-button {
  padding-top: 20px;
  display: flex;
  margin-top: 30px;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  background-color: #ff5555;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.button:hover {
  background-color: #ff7878;
}

.button:focus {
  outline: none;
}


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

@media (max-width: 768px) {
  h2 {
    font-size: 40px;
  }

  .header-title {
    padding-top: 150px;
  }

  .box-button {
    flex-direction: column;
    gap: 10px;
  }

  .button-support {
    width: 80%;
    margin: 0 auto;
  }

  .container {
    height: 15vh;
  }
}

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

  .header-title {
    padding-top: 100px;
  }

  .button-support {
    width: 100%;
    padding: 10px 15px;
  }
}

footer {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

