/* Font embeds for all possible fonts */
.audiowide-regular {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
  }  
.orbitron {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
.space-grotesk {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
.space-mono-regular {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }
.space-mono-bold {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: normal;
  }
.space-mono-regular-italic {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: italic;
  }
.space-mono-bold-italic {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: italic;
  }
.quantico-regular {
    font-family: "Quantico", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
.quantico-bold {
    font-family: "Quantico", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
.quantico-regular-italic {
    font-family: "Quantico", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
.quantico-bold-italic {
    font-family: "Quantico", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
.geo-regular {
    font-family: "Geo", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
.geo-regular-italic {
    font-family: "Geo", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
.oxanium {
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
.electrolize-regular {
    font-family: "Electrolize", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

/* Actual CSS code */
html {
    background-color: black;
    background-image: url("images/stars_through_the_clouds.jpg");
    background-position: center center;
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
    box-sizing: border-box;
    color: white;
}

*,
*::before,
*::after{
    box-sizing: inherit;
}

body {
    height: max-content;
    margin: 0px auto;
    position: relative;
}

.page_wrapper {
  min-height: 150px;
  width: 1150px;
  margin: 0px auto;
  /* background-color: rgb(36, 41, 46); */
  background: #414A4E;
  padding: 0px 20px 20px 20px;
  border: 5px solid black;
}

.title_section{
  width: calc(100% + 40px);
  margin-left: -20px;
  height: 165px;
  /* background: linear-gradient(#111213, 80%, #614D6D); */
  background-image: url(images/space_skybox.jpg);
  position: relative;
  /* z-index: 0; */
}

.navigation_buttons {
    position: relative;
    height: 50px;
    width: 1140px;
    box-sizing:border-box;
    background: linear-gradient(90deg, #614D6D, #755D7E) no-repeat center;
    outline: 3px solid black;
}

button {
    position: relative;
    top: 5px;
    left: 22%;  
    margin: 0px;
    padding: 8px 10px;
    border-top: 1px solid rgb(92, 92, 92);
    border-left: 1px solid rgb(92, 92, 92);
    border-right: 2px outset rgb(92, 92, 92);
    border-bottom: 2px outset rgb(92, 92, 92);
    border-radius: 20%;
    background: linear-gradient(to right, rgb(0, 88, 0), rgb(75, 133, 75));
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: white;
    text-shadow: 2px 2px 3px black;
    text-wrap: balance;
}

h1 {
    font-size: 60px;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    text-shadow: 3px 3px 1px #326305;
    -webkit-text-stroke: 1px black;
    color: #33FF00;
    position: relative;
    /* z-index: 1; */
}

.page_gap_after_nav {
  height: 50px;
}

.first_line {
  font-size: 18px;
}

article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr
}

.article_organizer p {
  grid-column: 1;
  color: #33FF00;
}

.main_page_images {
  grid-column: 2;
}

.retro_scifi_cable_car {
  scale: 75%;
}

p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
    /* maybe display:inline? */
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% + 40px);
  height: 50px;
  margin-left: -20px;
  margin-bottom: -20px;
  background: linear-gradient(90deg, #614D6D, #755D7E) no-repeat center;
  outline: 3px solid black;
}