:root {
  --bg-color: #000000;
  --text-color: #cfcccc;
  --container-bg-color: #181c29;
}

@font-face {
  font-family: homespun;
  src: url("/fonts/Homespun.ttf");
}

html {
  background:url("/img/bgs/index_bg.webp") no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  background-color: var(--bg-color);
}

body {
  color: var(--text-color);
  font-size: 1.125em;
}

.content-wrapper {
  display: flex;
  justify-content: center;
}

.main-container {
  width: 60%;
  margin: 20px auto;
  padding: 15px;
  text-align: center;
  background-color: var(--container-bg-color);
  background-image: url("/img/bgs/carbon-fibre-v2.png");
  border: #101014 5px outset;
  box-shadow: #5a3c5a 10px 10px;
}

h1 {
  font-family: homespun;
  text-align: center;
  color: #7776ac;
  text-shadow: #000000 5px 5px;
  border-bottom: #946973 3px dotted;
}

h2 {
  width: fit-content;
  font-family: homespun;
  text-align: left;
  color: #b67385;
  border-bottom: #946973 3px dotted;
}

a {
  color: inherit;
}

h3 {
  font-family: homespun;
  color: #5c5c9a;
}

h1:before {
  content: "⬝🞕▣ ";
}

h1:after {
  content: " ▣🞕⬝";
}

span {
  color: #cea2d6;
}

#buttons {
  display: block;
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  background-color: #7776ac;
  background-image: url("/img/bgs/carbon-fibre.png");
  border: #5c5c9a inset 3px;
}

#buttons:hover {
  color: #fefefe;
  background-color: #5c5c9a;
  border: #5c5c9a outset 3px;
}

#buttons a {
  color: #dcd5d5;
}

@media screen and (max-device-height: 600px) {
.content-wrapper {
  max-width: 799px;
  justify-content: center;
}
}

/* Device orientation */
@media screen and (orientation: portrait) {
html {
  background: url("/img/bgs/index_bg.webp") no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  background-color: var(--bg-color);
  }
.content-wrapper {
  display: block;
  justify-content: center;
}
.main-container {
  width: 90%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
}