:root {
  --black: #000000;
  --blue-green: #085f6c;
  --dark-blue-green: #09151d;
  --red: #9e0f0f7e;
}

h1,
h2,
h3,
h4,
h5 {
  color: #ddd;
  font-family: "Lucida Console", monospace;
}

b,
strong {
  color: #fff;
}

a {
  color: #eee;
}

html {
  color: #ccc;
  font-family: "Monserrat", sans-serif;
  font-size: 1.2em;
  line-height: 1.4em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--dark-blue-green);
}

body {
  width: 800px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  border-radius: 20px;
  padding: 20px;
  margin-left: -20px;
  margin-right: -20px;
}


.site-title {
  font-size: 2.5em;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
}

@media (max-width: 600px) {
  html {
    width: 100%;
  }

  body {
    width: 100%;
  }

  .header {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .site-title {
    font-size: 1.8em;
  }
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-button {
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s;
}

.page-button:hover {
  background-color: var(--blue-green);
}

.block {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--blue-green);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#disclaimer {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--red);
  text-align: left;
  font-size: 0px;
}

#disclaimer::before {
  font-size: 10px;
  content: "This content has been written 100% by hand, no AI has been used.";
}

.block h1 {
  font-size: 1em;
  text-align: center;
  margin-bottom: 0;
}

.small {
  font-size: 0.8em;
}

.wave {
  background: #111;
  color: #fff;
  text-shadow: 1px 1px 10px #fff, 1px 1px 10px #ccc;
}