/* static fonts */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Inter-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Inter-ThinItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/Inter-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/Inter-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Inter-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Inter-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Inter-BlackItalic.woff2") format("woff2");
}

/* Layout */

* {
  box-sizing: border-box;
}

body {
  background-color: #22252d;
  color: #ddd;
  font-family: Inter, sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

header {
  height: 60px;
  background-color: #1e1e1e;
  padding: 14px;
  border-bottom: 1px solid #333;
}

header > .content {
  max-width: 800px;
  margin: 0 auto;

  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: flex-end;
}

header a {
  text-decoration: none;
}

header svg {
  height: 32px;
  width: 32px;
  fill: #ddd;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

aside {
  width: 100px;
}

article {
  flex: 1;
  min-width: 10px;
}

p {
  line-height: 1.8;
  font-size: 16px;
}

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
  padding: 0;
}


h1 {
  max-width: 800px;

  margin: 30px 0;

  font-weight: 900;
  color: #f9c600;
  font-size: 22vw;

  line-height: 0.8;
}

@media screen and (min-width: 800px) {
    h1 {
      font-size: 200px;
      position: relative;
      margin: 150px auto 100px;
      left: -12px;
    }
}

.first {
  letter-spacing: 1.35px;
}

h2 {
  font-weight: 300;
  color: #f9c600;
  font-size: 10vw;
  margin-top: 48px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

@media screen and (min-width: 800px) {
  h2 {
    font-size: 64px;
  }
}

h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fe7de9;
}

h4 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #797879;
  font-style: italic;
}
