@font-face {
 font-family: 'GeistMono';
 font-weight: 500;
 font-style: normal;
 src: url('assets/fonts/GeistMono-Medium.ttf') format('truetype');
}


:root {
  --base-color: #000000;
  --accent-color: #FFF000;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html, body, p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-family: "GeistMono";
  font-weight: 500;
  color: var(--base-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 200ms ease;
}

body {
  position: relative;
  background: var(--accent-color);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5vw 6vw;

}

::selection {
  color: var(--accent-color);
  background-color: var(--base-color);
}

header, footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer span.stay-tuned {
  text-align: right;
}

main.img {
  margin: 2rem 0;
}
