*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #0b0c12;
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

::selection {
  background-color: #1da1ff;
  color: #ffffff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.btn-primary {
  background-color: #1da1ff;
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 40px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  border: none;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: #1da1ff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 40px;
  border-radius: 100px;
  border: 2px solid #1da1ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: #1da1ff;
  color: #ffffff;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-title .highlight,
.section-title span,
.section-title strong {
  font-family: 'Luckiest Guy', cursive;
  color: #f5c542;
  font-style: normal;
  font-weight: 400;
}

.section-subtitle {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
}

@media (max-width: 1023px) {
  .btn-primary,
  .btn-outline {
    font-size: 18px;
    padding: 10px 32px;
    height: 46px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-title .highlight,
  .section-title span,
  .section-title strong {
    font-size: 42px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-outline {
    font-size: 16px;
    padding: 10px 28px;
    height: 44px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-title .highlight,
  .section-title span,
  .section-title strong {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}
