@font-face {
  font-family: 'Inter';
  font-display: swap;
  font-weight: 100;
  src: url('Inter-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-display: swap;
  font-weight: 400;
  src: url('Inter-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-display: swap;
  font-weight: 500;
  src: url('Inter-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-display: swap;
  font-weight: 700;
  src: url('Inter-Bold.ttf') format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: Inter, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: radial-gradient(ellipse at 50% 40%, #1b2b12 0%, #070d05 100%);
  min-height: 100vh;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 16px 24px;
}

.logo {
  display: block;
  width: 73px;
  height: 24px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}

.illustration {
  width: 320px;
  max-width: 100%;
  border-radius: 16px;
}

.title {
  margin-top: 24px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}

.description {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #8fa080;
}

.footer {
  padding: 24px 32px 48px;
  text-align: center;
}

.copyright {
  font-size: 12px;
  color: #4a5540;
}

@media (max-width: 1023px) {
  .header {
    padding: 12px 16px;
  }

  .logo {
    width: 63px;
    height: 21px;
  }
}

@media (max-width: 767px) {
  .content {
    padding: 24px;
  }

  .illustration {
    width: 204px;
    height: 140px;
  }

  .title {
    font-size: 24px;
  }
}
