:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Georgia", sans-serif;
  --third-family: "Graphik", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  margin: 0 auto;
  background: #0b001a;
  color: #e9deff;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 20px 0;
}

.container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.content {
  padding: 20px;
  border-radius: 20px;
}

.title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #0b001a;
  margin-bottom: 16px;
}

.sub-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #0b001a;
  margin-bottom: 100px;
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #0b001a;
}

@media screen and (min-width: 375px) {
  .container {
    width: 375px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    width: 768px;
  }

  .content {
    padding: 40px 20px;
    border-radius: 40px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    width: 1440px;
  }

  .content {
    padding: 40px;
  }

  .title {
    font-size: 50px;
  }

  .sub-title {
    font-size: 14px;
    margin-bottom: 200px;
  }

  .text {
    font-size: 14px;
  }
}
