/* ===============================
   Reset & Fonts
================================== */
@import url('reset.css');

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Italic';
  src: url('../fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

/* ===============================
   Root Variables
================================== */
:root {
  --body-background-color: #000;
  --body-font-color: #fff;
}

/* ===============================
   Base Elements
================================== */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background-color: var(--body-background-color);
  color: var(--body-font-color);
}

/* ===============================
   Layout
================================== */
main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===============================
   Typography
================================== */
h1 {
  font-size: 2.5rem;
  font-weight: normal;
}
