@media (max-width: 767.98px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
}

body {
  font: 300 1.25rem Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5em;
  background: #200010;
  color: #fff;
  padding: 0 1rem;
}
@media (max-width: 575.98px) {
  body {
    padding: 0;
  }
}

.content, .content-block {
  margin: auto;
  max-width: 80rem;
}

.content-block {
  margin-top: 5rem;
  padding: 2rem;
  padding-bottom: 1rem;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.5rem;
}
@media (min-width: 576px) {
  .content-block {
    padding: 3rem;
  }
}

p {
  margin: 0;
  margin-bottom: 1rem;
}

h1 {
  text-shadow: 1px 1px 2px #1c74bc;
}

h2 {
  padding-bottom: 4px;
}

a[href]:not(.no-underline) {
  text-decoration: none;
  position: relative;
  color: #fff;
  white-space: nowrap;
}

a[href]:not(.no-underline):before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  height: 2px;
  bottom: -2px;
  background-color: #fff;
}

a[href]:not(.no-underline):after {
  content: "";
}

a[href]:not(.no-underline):hover:after {
  content: "";
  width: 20%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  background-color: #1c74bc;
  left: 0;
  animation: myfirst 1s infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes myfirst {
  50% {
    transform: scale(2, 1) translate(0, 0);
  }
  100% {
    left: 100%;
    transform: translate(-100%, 0);
  }
}
.flex-grid {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.col {
  flex: 1;
  min-width: 300px;
}

header {
  display: contents;
}
header h1 {
  font-size: 5rem;
  line-height: 40px;
  font-family: Tahoma, "Segoe UI", Geneva, Verdana, sans-serif;
}
@media (max-width: 575.98px) {
  header h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 359.98px) {
  header h1 {
    font-size: 2.5rem;
  }
}
header h1, header h2 {
  text-align: center;
}

.sticky {
  position: sticky;
  width: 100%;
  margin-top: 0;
  left: 0;
  top: 0;
  z-index: 2;
  text-align: center;
  min-height: 46px;
  background: #200010;
}

footer {
  text-align: center;
  opacity: 0.3;
}
footer section {
  color: #fff;
  font-size: small;
}
footer section p {
  line-height: initial;
}

/*# sourceMappingURL=verydarkpink.css.map */