@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&display=swap');

:root {
  --neutral-100: #FFFFFF;
  --brand-primary-600: #12362F;
}

body, html {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  background: var(--brand-primary-600);
}

@media (max-width: 768px) {
  body {
    align-items: flex-start;
  }
}

.wrapper {
  margin-left: 135px;
  max-width: 570px;
}

.logo {
  width: 120px;
  height: 36px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .wrapper {
    margin: 24px 16px;
    max-width: inherit;
  }
}

.heading {
  font-family: 'Noto Sans', sans-serif;
  color: var(--neutral-100);
  margin: 0;
}

.heading-1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 8px;
}

.heading-2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 24px;
}

.buttons {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 768px) {
  .buttons {
    flex-direction: column;
  }
}

.button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 15px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(180deg, #13C9A7 0%, #0E8B74 100%);
  text-decoration: none;
}

.button:hover {
  background: #2B8474;
}

.button .text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  color: var(--neutral-100);
}
