@font-face {
  font-family: "Roboto Mono";
  src:
    url("/_assets/fonts/RobotoMono-VariableFont_wght-DpiE19Wu.woff2") format("woff2"),
    url("/_assets/fonts/RobotoMono-VariableFont_wght-CC6vgyJK.woff") format("woff");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src:
    url("/_assets/fonts/RobotoMono-Italic-VariableFont_wght-B_rmnbEj.woff2") format("woff2"),
    url("/_assets/fonts/RobotoMono-Italic-VariableFont_wght-DmCp4KJX.woff") format("woff");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --ff: "Roboto Mono", monospace;
  --color1: #ffffff;
  --color1Alpha: #ffffffbb;
  --color22: #323232;
  --color82: #d2d2d2;
  --accent1c: #b88e4d;
  --accent2: #118338;
  --accent2c: #b8514d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

strong,
b {
  font-weight: 300;
}

header {
  margin: 0;
  padding: 1rem;
}

main {
  width: 100%;
}

.wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  background: #0d0d0d;
}

@media (min-width: 960px) {
  .wrapper {
    border-radius: 0.5rem;
  }
}

h1 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

p {
  margin: 1rem auto;
  padding: 0;
  line-height: 1.5;
  font-weight: 100;
  color: #ccc;
}

a {
  color: var(--accent2);
  text-decoration: underline;
  font-weight: 300;
  letter-spacing: 1px;
}

a:hover {
  text-decoration: none;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.site-title-text {
  font-size: 3rem;
  font-weight: 100;
  letter-spacing: -0.1rem;
}

@media (max-width: 520px) {
  .site-title-text {
    font-size: 2.3rem;
  }
}

.home {
  width: 100%;
  padding: 0;
  text-align: left;
}

.home-cover {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0 0 1.25rem;
}

.home-title {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.home-intro {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 100;
  color: var(--color1Alpha);
}

.home-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .home-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--color82);
  background: #05140ae6;
  text-decoration: none;
  color: var(--color1);
  box-shadow: 0 10px 30px #0006;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out,
    background 0.15s ease-out;
}

.home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px #0009;
  border-color: var(--accent2);
  background: #0a2314f2;
}

.home-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  text-align: center;
}

.home-card-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 300;
}

.home-card-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 100;
  color: var(--color1Alpha);
}

.about-creator {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color22);
}

.about-creator-title {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 0 1rem;
  color: var(--color1);
}

.about-creator p {
  font-size: 1.1rem;
  font-weight: 100;
  line-height: 1.5;
  color: var(--color1Alpha);
  margin: 0 0 1rem;
  text-align: left;
}

.about-creator p:last-child {
  margin-bottom: 0;
}

.about-creator em {
  font-style: italic;
  font-weight: 100;
}

.site-footer {
  margin: 0;
  padding: 1rem;
  text-align: center;
}

.site-footer-text {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 100;
  color: var(--color1Alpha);
}

.site-footer-logo {
  display: block;
  margin: 1rem auto 0;
  width: 60px;
  height: 60px;
}
