* {
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;

  width: 100dvw;
  height: 100dvh;
  padding: 24px;

  font-family: 'Bully', serif;
  font-size: 20px;
  font-weight: 400;
  color: #fdfdfd;

  background: url(./background.jpg) 100% 100% / cover;
  background-position: center;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;

    background: rgba(40, 39, 40, 0.4);
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button {
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;

  font: inherit;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: none;

  background: #fdfdfd;
  color: #575349;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;

  height: 100%;
}

.title {
  font-size: 180px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.title > span {
  color: #ffa301;
}

.text {
  font-family: 'Inter', serif;
  line-height: 1.57;
}

@media (max-width: 768px) {
  body {
    padding: 12px;
    background-position: 36% center;
  }

  .header > svg {
    width: 160px;
    height: 36px;
  }

  .button {
    padding: 8px 16px;
    font-size: 16px;
  }

  .title {
    font-size: 80px;
  }

  .text {
    font-size: 14px;
    text-align: center;
  }
}
