*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Micro 5", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #212529;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 90vh;
}

.main h1 {
  font-size: 100pt;
  color: #fa4763;
  letter-spacing: 1px;
}

.main a {
  text-decoration: none;
  color: #f8f9fa;
  border: 1px solid #f8f9fa;
  padding: 10px 15px;
  transition: all 0.2s ease-in-out;
}

.main a:hover {
  color: #fa4753;
  border: 1px solid #fa4753;
}
