body {
  font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  margin: 0;
  padding: 0;
  height: 100vh;

  color: white;

  background-color: black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('media/minecraft.jpg');
}

div.transbox {
  background-color: black;
  opacity: 0.8;
  height: 100%;
}

nav {
  border: 1px solid green;
  border-radius: 13px;
  text-align: end;
}

section#links {
  border-bottom: 1px solid #4b4b5e;
  text-align: center;
  padding: 1em;

  & > a {
    font-size: large;
  }
}

section#ore {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
}

h1 {
  text-align: center;
  font-variant: small-caps;
}

a {
  color: #0286da;
  text-decoration: none;
}

table {
  border-spacing: 0;

  & tr:nth-child(odd) {
    background-color: #1f1f1f;
    border: none;
  }

  & td,
  & th {
    border: 1px solid forestgreen;
    padding: 20px 10px;
  }
  & th {
    font-size: large;
    background-color: #303030;
  }
}
