:root {

  --default-round: 0.5em;

  --faint-gray: rgba(255, 255, 255, 0.05);
  --gray: rgba(255, 255, 255, 0.2);
  --orange: #d65d0e;
  --orange-alt: #fe8019;
  --red: #cc241d;
  --red-alt: #fb4934;
  --purple: #b16286;
  --purple-alt: #d3869b;
  --green: #98971a;
  --green-alt: #b8bb26;
  --blue: #458588;
  --blue-alt: #83a598;
  --aqua: #689d6a;
  --aqua-alt: #8ec07c;
  --yellow: #d79921;
  --yellow-alt: #fabd2f;

  --bg-0: #1d2021;
  --bg-1: #282828;
  --bg-2: #3c3836;
  --bg-3: #504945;
  --bg-4: #665c54;

  --primary: var(--orange);
  --primary-alt: var(--orange-alt);
  --secondary: var(--green);
  --secondary-alt: var(--green-alt);
  --tertiary: var(--blue);
  --tertiary-alt: var(--blue-alt);
  --link: var(--orange);
  --link-hover: var(--orange-alt);




}


* {
  box-sizing: border-box;
  font-family: "Inter";
  margin: 0;
  padding: 0;
}

body {
  /* width: 100vw; */
  /* height: 100vh; */
  background-color: var(--bg-0);
  color: white;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-alt);
}

.fake-link {
  color: white;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

button {
  color: white;

}



@font-face {
  font-family: 'Inter';
  src: url(/fonts/Inter-VariableFont_opsz,wght.ttf) format('truetype');
}


.content * {
  margin-top: 1em;
  margin-bottom: 1em;
}

.content {
  padding: 0 1em;

}

.overflow-hidden {
  overflow: hidden;

}

hr {
  margin-top: 1em;
  margin-bottom: 1em;
}

input {
  width: 100%;
  background-color: var(--bg-0);
  border: none;
  outline: none;
  color: white;
  padding-left: 1em;
  border-radius: var(--default-round);
  height: 2.5em;
  border: 1px solid var(--gray)
}


input:focus {
  border: 1px solid var(--primary)
}

select {
  height: 2.5em;
  background-color: var(--bg-0);
  border: 1px solid var(--gray);
  outline: none;
  color: white;
  padding-left: 1em;
}

textarea {
  height: 6em;
  background-color: var(--bg-0);
  border: none;
  outline: none;
  color: white;
  padding: 1em;
}

@media only screen and (max-width: 700px) {

  html,
  body {
    overflow-x: hidden;
  }
}

header a {
  text-decoration: none;
  font-weight: bold;
  transition: color 0.5s;
}

a {

  transition: color 0.5s;
}

main {
  /* min-height: 100vh; */
  /* margin-top: 4em; */
}


.section-one {
  background-color: var(--bg-1);
  /* background: radial-gradient(var(--bg-2), var(--bg-0)); */
  color: white;
  width: 100%;
  height: 30em;
  display: flex;

}

.section-two {
  display: flex;
  background-color: var(--bg-0);
  color: white;
  width: 100%;
  height: 30em;

}
