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

body {
  color: #ffffff;
  font-family: kinto-sans, sans-serif;
  background: #0a0d0d;
  text-align: center;
}

li {
  list-style: none;
}

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

br {
  display: none;
}

section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-title h1 {
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 80px;
  margin-bottom: 60px;
}

.top-title h2 {
  font-weight: normal;
  font-size: 28px;
}

.top-title p {
  font-size: 20px;
}

@media screen and (max-width: 950px) {
  .top-title h1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 750px) {
  .top-title h1 {
    font-size: 48px;
  }

  .top-title h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  br {
    display: block;
  }

  .top-title h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .top-title h2 {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .top-title p {
    font-size: 16px;
  }
}
