*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #290a40;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s;
}
.btn--primary {
  background-color: #d46cff;
  padding: 10px 46px;
}
.btn--primary:hover {
  opacity: 0.85;
}
.btn--full {
  width: 100%;
}
@media (max-width: 768px) {
  .btn--primary {
    font-size: 18px;
    padding: 8px 32px;
  }
}
