@font-face {
  font-family: 'Switzer';
  src: local('Switzer'), url(/fonts/Switzer-Regular.otf) format('opentype'), url(/fonts/Switzer-Regular.woff) format('woff'),
    url(/fonts/Switzer-Regular.woff2) format('woff2'), url(/fonts/Switzer-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Switzer';
  src: local('Switzer'), url(/fonts/Switzer-Semibold.otf) format('opentype'), url(/fonts/Switzer-Semibold.woff) format('woff'),
    url(/fonts/Switzer-Semibold.woff2) format('woff2'), url(/fonts/Switzer-Semibold.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: local('EB Garamond'), url(/fonts/EBGaramond-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --background-color: #121013;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Switzer', sans-serif;
  color: white;
}

body {
  background-color: var(--background-color);
}

img {
  max-width: min(100%, 500px);
  height: auto;
  border-radius: 10px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'EB Garamond', serif;
}

main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 100vh;
}

p {
  max-width: 48ch;
  line-height: 1.5;
  font-weight: 300;
}

blockquote {
  max-width: 38ch;
  padding: 0.75rem 1rem 1rem;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  letter-spacing: 0;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--background-color) 93%, white);
  background-color: color-mix(in srgb, var(--background-color) 98%, white);
  box-shadow: 0 0px 0px 1px color-mix(in srgb, var(--background-color) 50%, black);
}

b {
  font-weight: 600;
}
