* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--black);
  transition: background-color 1s ease-in;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

head {
  display: none;
}

/* VARIABLES */

:root {
  --white: #f0f0f0;
  --black: #000000;
  --grey: #808080;
  --blue: #0f33ff;
  --green: #0aff00;
  --pink: #ff50ff;
}

.black:hover {
  color: var(--black);
}

/* ANIMATION */

@keyframes slideUp {
  0% {
    transform: translateY(6%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* TYPOGRAPHY */

@font-face {
  font-family: "Hibbert Sans";
  src: url("../fonts/Hibbert-Sans-Text-520.woff2") format("woff2");
  font-style: normal;
  font-weight: 520;
}

body,
h1,
p,
li,
a,
button {
  font-family: "Hibbert Sans";
  font-style: normal;
  font-weight: normal;
  font-kerning: normal;
  font-size: calc(26px + (66 - 26) * ((100vw - 375px) / (1600 - 375)));
  line-height: calc(28px + (66 - 28) * ((100vw - 375px) / (1600 - 375)));
  letter-spacing: calc(-0.05rem + (-0.8 - -0.05) * ((100vw - 375px) / (1600 - 375)));
  animation: slideUp 0.75s ease forwards;
  text-decoration: none;
  color: var(--white);
  mix-blend-mode: difference;
}

/* BODY */

body {
  padding-top: calc(8px + (24 - 8) * ((100vw - 375px) / (1600 - 375)));;
  padding-bottom: calc(8px + (24 - 8) * ((100vw - 375px) / (1600 - 375)));;
  padding-left: calc(12px + (30 - 12) * ((100vw - 375px) / (1600 - 375)));;
  padding-right: calc(12px + (30 - 12) * ((100vw - 375px) / (1600 - 375)));;
}

header,
main,
footer {
  width: 100%;
}

nav {
  position: static;
  top: 0;
}

nav h1, nav p {
  display: inline;
}

.info {
  margin-bottom: calc(60px + (300 - 60) * ((100vw - 375px) / (1600 - 375)));;
}

footer {
  position: relative;
  justify-content: space-between;
  bottom: 0;
  left: 0;
}

footer li {
  display: inline-block;
  margin: 0 1.5% 0 0;
}