:root {
}

@font-face {
  font-family: Roboto;
  src: url(assets/Roboto-Regular.ttf);
}

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

body {
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
}

/* HEADER */

header {
  background-color: lightgray;
  font-size: 2rem;
  text-align: center;
  width: 100%;
  padding: 10px;
}

/* MAIN */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#monkey {
  height: fit-content;
  width: fit-content;
}

/* FOOTER */
footer {
  background-color: lightgray;
  font-size: 2rem;
  text-align: center;
  margin-top: auto;
  width: 100%;
  padding: 10px;
}
