/* Local Goli font files (OpenType). Use .woff2 if available for better compression.
   Ensure these files exist in the ./fonts/ folder relative to this CSS file. */
@font-face {
  font-family: 'Goli';
  src: url('fonts/Goli-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goli';
  src: url('fonts/Goli-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goli';
  src: url('fonts/Goli-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goli';
  src: url('fonts/Goli-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goli';
  src: url('fonts/Goli-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Font stack and fallback */
:root {
  --font-sans: 'Goli';
  --background: #151515;
  --text-color: #d5d5d5;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--text-color);
  font-family: var(--font-sans);
  margin: 5%;
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2ch;
}
header img {
  width: 150px;
  border-radius: 50%;
}
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: inherit;
  font-size: 2rem;
}
section {
  max-width: 60ch;
  margin: 0 auto;
}
p {
  margin: 0 0 1rem;
}
a img {
  width: 100px;
}
article.container {
  max-width: 800px;
  margin: auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 3px 10px #000;
  border-radius: 20px;
}
.sideline {
  border-left: 2px solid #317700;
  padding-left: 1rem;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 2ch;
}
footer a {
  color: var(--text-color);
  text-decoration: none;
}