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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1a1a1a;
  color: #7f7f7f;
  font-family: "Roboto Mono", "Courier New", Courier, monospace;
  font-weight: 400;
  font-size: 18px;
  list-style-position: inside;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero, .arrows {
  width: 90%;
  max-width: 820px;
  position: absolute;
  margin: 2em;
}

.arrows {
  animation: rotating 15s linear infinite;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.flex-row, .flex-content {
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  width: 100%;
  -moz-column-gap: 2em;
       column-gap: 2em;
}

.flex-content {
  max-width: 820px;
  padding: 2em;
  padding-bottom: 0;
}

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

.footer {
  background-color: black;
  color: #7f7f7f;
  width: 100%;
  text-align: center;
  padding: 1em;
}
.footer a {
  color: #7f7f7f;
}
.footer a:hover {
  color: white;
}

.bigtext {
  font-size: 2em;
  text-align: center;
  color: white;
  padding-bottom: 1em;
  width: 100%;
}

.smalltext, .smalltext-center {
  padding-bottom: 2.5em;
  font-size: 1em;
  text-align: left;
}

.smalltext-center {
  text-align: center;
}

.photo, .logo {
  width: 100%;
  border-radius: 100%;
  margin-bottom: 2.5em;
}

.logo {
  border-radius: 0;
}/*# sourceMappingURL=main.css.map */