* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff; }

html {
  font-family: 'Rubik', sans-serif;
  height: 100%;
  scroll-behavior: smooth; }

body {
  height: 100%;
  width: 100vw;
  overflow-x: hidden;
  background-image: linear-gradient(90deg, #214564, #4d2564);
  background-size: cover;
  overflow: overlay;
  display: flex;
  justify-content: center; }

.wrapper {
  margin-bottom: 5rem;
  max-width: calc(1500px + 3rem);
  padding: 5rem 1.5rem;
  width: 100vw; }
  .wrapper h1 {
    margin: 2rem 0;
    font-size: 3rem;
    font-weight: 900; }
  .wrapper h2 {
    margin-top: 1rem;
    margin-bottom: 0.5rem; }
  .wrapper h3 {
    margin-top: 0.7rem;
    margin-bottom: 0.2rem; }
  .wrapper h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.2rem; }
  .wrapper p, .wrapper li {
    line-height: 1.5rem;
    color: #c8cde0;
    font-size: 1.1rem; }
  .wrapper ul {
    margin: 1rem 0; }

::-webkit-scrollbar {
  width: .5rem; }

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3); }

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem; }
