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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Syne", sans-serif;
  background: #080808;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea {
  font-family: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  border-radius: 1000px;
  padding: 16px 32px 16px 32px;
  transition: opacity 0.2s;
  width: fit-content;
}

.btn:hover {
  opacity: 0.85;
}

.btn-white {
  background: #fff;
  color: #0558ff;
  box-shadow: 0 16px 32px rgba(12, 12, 13, 0.4);
}

.btn-blue {
  background: #0558ff;
  color: #fff;
  box-shadow: 0 16px 32px rgba(12, 12, 13, 0.4);
}

.home-sections {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .home-sections {
    gap: 40px;
    padding: 20px 0;
  }
}
