html, body {
  padding: 0;
  margin: 0;
}

.main {
  background-image: url("./assets/background.jpg");
  background-size: cover;
  font-family: 'Noto Sans', sans-serif;
}

.title {
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.section {
  padding: 5em 2em;
  margin: 0;
  color: #eeeeee;
  background-color: rgba(0, 0, 0, 0.5);
}

.section.main-section {
  text-align: center;
}

.section.scrolling-section {
  background-color: rgba(233, 233, 233, 0.95);
  color: #111111;
  margin: 5em auto;
  max-width: 50em;
}

.info {
  padding: 1em;
  margin: 1em 2em;
  background-color: rgba(200, 200, 200, 0.95);
  color: #111111;
}

@media (prefers-reduced-motion: no-preference) {
  .icon {
    -webkit-animation: App-logo-spin infinite 10s linear;
            animation: App-logo-spin infinite 10s linear;
  }
}

@-webkit-keyframes App-logo-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes App-logo-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*# sourceMappingURL=style.css.map */