/* IMPORTS */

@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
  font-family: "PPAir";
  src: url("/fonts/PPAir-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPAir";
  src: url("/fonts/PPAir-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPAir";
  src: url("/fonts/PPAir-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PPAir";
  src: url("/fonts/PPAir-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPAir Mono";
  src: url("/fonts/PPAir-ExtraLightMono.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPAir Mono";
  src: url("/fonts/PPAir-MediumMono.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPAir Mono";
  src: url("/fonts/PPAir-MediumMonoItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PPAir Mono";
  src: url("/fonts/PPAir-SemiBoldMono.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPAir Mono";
  src: url("/fonts/PPAir-BlackMono.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPAir Mono";
  src: url("/fonts/PPAir-BlackMonoItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* BASE */

:root {
    --font-color: rgb(242, 242, 242);
    --background-color:  rgb(27, 27, 27);
    --text-size: 16px;
    --legend-size: 12px;
    --title-size: 142px;
}

html, body {
    margin: 0;
    background-color: var(--background-color);
    color: var(--font-color);
    font-family: "Host Grotesk", sans-serif;
}

.mono {
    font-family: "PPAir Mono", sans-serif; 
    letter-spacing: 2px;
}

body {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--font-color);
}

/* HEADER */

header {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: var(--legend-size);
    text-transform: uppercase;
}

header > div {
    padding: 24px;
}

header div p {
    margin: 0;
    padding: 0;
    font-size: 24px;
    text-align: center  ;
    line-height: 26px;
    font-family: "Host Grotesk", sans-serif;
    display: inline-block;
    padding: 0 8px;
}

/* FOOTER */

footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    font-size: var(--legend-size);
    text-transform: uppercase;
}

#footer_marquee {
    width: 100%;
    overflow: hidden;
}

#footer_track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.footer_item {
    font-size: 96px;
}

/* CONTACT */

#main_contact h2 {
    font-size: var(--font-size);
    text-transform: uppercase;
    font-style: italic;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 0;
}

#main_contact .rs_contact {
    font-size: var(--font-size);
    text-align: center;
    margin: 16px;
}

#main_contact .rs_contact a{
    padding: 12px;
}
