:root {
  font-family: "IBM Plex Mono", sans-serif;
  background-color: #202020;
  color: #fff;
  letter-spacing: -2px;
  font-size: 16px;
}

@media (min-width: 576px) {
  :root {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  :root {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  :root {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  :root {
    font-size: 20px;
  }
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  src: url('/ibm-plex-mono-v15-latin-italic.woff2') format('woff2')
}

body {
  display: flex;
  height: 98vh;
  justify-content: center;
  align-items:center;
}

.container {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  text-align:right;
  position: relative;
}

@media (min-width: 576px) {
  .container {
    max-width: 510px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 920px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1130px;
  }
}

[role="button"] {
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  background-color: #3a34ff;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.5s;
}

[role="button"]:is(:hover, :active, :focus) {
  background-color:#6f6af9;
  border: 0.09rem solid white;
  text-decoration:underline;
}

div.links {
  padding-top: 1rem;
  display:flex;
  justify-content:space-between;
}

@media (max-width: 700px) {
  div.links {
    flex-direction: column;
    height: 4.7rem;
  }
}
