* {
  box-sizing: border-box;
}
html {
  overflow: hidden;
}
.body {
  height: 100vh;
  background-image: url(/img/bg-step1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.links a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  &:hover {
    color: #c30e3d;
  }
}
.header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 50%;
}
.header h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}
.header a {
  text-decoration: none;
  background: #c30e3d;
  color: white;
  font-size: 26px;
  padding: 15px 30px;
  transition: background 0.5s;
  &:hover {
    background: #810a2a;
  }
}

@media (max-width: 1024px) {
  .header {
    width: 70%;
    gap: 15px;
  }

  .header h1 {
    font-size: 26px;
  }

  .header a {
    font-size: 22px;
    padding: 12px 26px;
  }

  .links a {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  body {
    background-size: cover;
    background-position: center;
  }

  .header {
    width: 90%;
    gap: 12px;
  }

  .header h1 {
    font-size: 22px;
  }

  .header a {
    font-size: 20px;
    padding: 12px 20px;
  }

  .links {
    bottom: 10px;
  }

  .links a {
    font-size: 16px;
  }
}
