@font-face {
  font-family: "Mono";
  src: url("/assets/mono.otf");
}

html {
  background: black;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 16px;
}

body {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 25px;
  padding: 0 10%;
}

h1 {
  position: relative;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  color: inherit;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h2 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: inherit;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h3 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.6rem;
  color: inherit;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05rem;
}

h4 {
  position: absolute;
  font-family: "Mono", monospace;
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #faff00;
  bottom: 40%;
  text-align: center;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  color: white;
  margin-bottom: 0;

  font-family: neue-haas-grotesk-text, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: white;
  cursor: pointer;
}

a:hover {
  opacity: 0.5;
}

.button {
  background-color: #faff00;
  color: black;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin: 1rem auto;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.button:hover {
  background-color: white;
}

.text {
  grid-column: 3 / span 8;
}

.indent {
  text-indent: 2em;
}

.last {
  margin-bottom: 5rem;
}
.rightcol {
  grid-column: 7 / span 5;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-bottom: 5rem;
}

.quote {
  /* font-style: italic; */
  margin-bottom: 2rem;
  font-family: "Mono", monospace;
  line-height: 2rem;
  text-align: center;
}

.sub {
  /* font-style: italic;
  text-indent: 2em; */
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: center;
}

.grid-img {
  grid-column: 2 / span 5;
  /* display: flex;
  flex-direction: column;
  justify-content: space-around; */
  margin-bottom: 5rem;
}

.header {
  grid-column: 4 / span 6;
  margin-bottom: 15px;
}

.header img {
  width: 100%;
}
.grid-img img {
  width: 100%;
  /* border-radius: 10px; */
}

footer {
  grid-column: 4 / span 6;
  font-size: 3rem;
  margin-bottom: 4rem;
  margin-top: 4rem;
  font-family: "Mono", monospace;
  line-height: 3rem;
  text-align: center;
}

header {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}

input[type="submit"]:hover {
  background-color: white;
}

input:focus {
  outline: none;
}

form {
  margin: 1rem 0 0rem 0;
}

label h1 {
  width: 100%;
  text-align: center;
}
::-webkit-input-placeholder {
  /* Edge */
  color: #faff00;
  opacity: 0.8;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #faff00;
  opacity: 0.8;
}

::placeholder {
  color: #faff00;
  opacity: 0.8;
}

@media only screen and (max-width: 1300px) {
  :root {
    font-size: 12px;
  }

  h3 {
    font-size: 0.8rem;
  }

  body {
    padding: 10px 5%;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    font-size: 12px;
  }
  body {
    display: inline-block;
  }

  header {
    background-color: black;
    padding-bottom: 1rem;
    padding-top: 1rem;
    box-shadow: 0px 5px 10px black;
  }

  .header {
    margin-top: 3.5rem;
  }

  .last {
    margin-bottom: 2rem;
  }
  .rightcol {
    margin-bottom: 2rem;
  }
}
