* {
  font-family: 'Montserrat', Sans-serif;
}

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

::selection {
  background-color: var(--decoration);
  color: var(--primary);
}

html {
  scrollbar-color: var(--decoration) #000000;
}

body {
  position: relative;
  background-color: #000;
  color: white;
}

p {
  line-height: 1.2;
}

h2 {
  font-size: 27px;
}

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

.container {
  padding: 0 1rem;
}

.section__divider {
  border-width: 0px 0px 10px 0px;
  border-style: solid;
  border-image: linear-gradient(to right, #ceb171, #fff7cc) 1;
}

@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    margin: 0 auto;
  }
}

.button-fluo {
  background: linear-gradient(135deg, #db3762, #814982);
  box-shadow: 0 0 6px #db3762, 
              0 0 12px #814982, 
              0 0 18px #db3762;
}