:root {
  --bg-color: #070d17;
  --text-color: #cfcccc;
  --container-bg-color: #03071e;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #946973 #171926;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #171926;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #946973;
}

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

html {
  background:url("/img/bgs/newsletter_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.25em;
}

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

.main-container {
  width: 50%;
  margin: -1em auto;
  padding: 15px;
  text-align: center;
  background-color: var(--container-bg-color);
  background-image: url("/img/bgs/carbon-fibre-v2.png");
  border: #cfcff3 5px double;
  box-shadow: #303459 10px 10px;
}

a {
  color: inherit;
}

a:hover {
  color: #3738c8;
}

h1 {
  font-family: homespun;
  text-align: center;
  text-transform: capitalize;
  color: #7776ac;
  text-shadow: #000000 5px 5px;
  border-bottom: #5054d2 7px dotted;
}

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

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

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

span {
  color: #cea2d6;
}

@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/newsletter_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%;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
}