@font-face {
  font-family: "Courier";
  src: url("../fonts/Courier\ New.woff2") format("woff2");
}

* {
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-size: 28px;
  font-family: 'Courier';
}

html {
  font-size: 28px;
}

a, a:link, a:visited {
  display: inline-block;
  text-decoration: none;
  color: rgb(111, 0, 255);
  font-size: 1rem;
}

body {
  padding: 1rem;
  box-sizing: border-box;
}

header {
  margin-bottom: 1rem;
}

article {
  margin-bottom: 1rem;
}

.event {
  padding: 1rem;
  box-sizing: border-box;
  background-color: #e7e7e7;
  border-radius: 1rem;
  max-width: 35rem;
  margin: auto;
  box-shadow: 0 0 30px #00000010;

}

h1 {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  font-size: 6.5vw;
  line-height: 0.75;
}

h2 {
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  margin-bottom: 1rem;
}

ul {
  padding: 0rem 0;
}

li {
  list-style: none;
}

a.register {
  animation: shake 0.3s;
  animation-iteration-count: infinite;
}

.legal p {
  margin-bottom: 1rem;
}

footer {
  width: 100%;
  text-align: center
}

footer a {
  color: inherit!important;
  font-size: 0.75rem!important;

}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

aside {
  margin: 1rem 0;
  text-align: center;
}

.event aside {
  text-align: left;
}

@media only screen and (max-width: 850px) {
  * {
    font-size: 20px;
  }

  html {
    font-size: 20px;
  }

  body {
    padding: 0.5rem;
  }
}