/* General Reset */
* {
  margin: 0;
  padding: 100;
  box-sizing: border-box;
}

body {
  /*--------------------------------------------------------------------------------------*/
  background-color: rgb(39, 39, 39); /* Background color - can be changed later */
  color: rgb(255, 251, 134); /* Text color */
  /*--------------------------------------------------------------------------------------*/
  font-family: "AFontNameVariable", sans-serif; /* Font family */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Load the variable font from the local folder */
@font-face {
  font-family: "AFontNameVariable";
  /*-------------------------------------------------------------------------------------*/
  src: url("fonts/micmac_VF.ttf") format("truetype");
  /*-------------------------------------------------------------------------------------*/
}

/* Container with centered text */
#container {
  /*-------------------------------------------------------------------------------------*/
  font-size: 15rem; /* Font size - can be adjusted later */
  line-height: 0.6;
  /*-------------------------------------------------------------------------------------*/

  justify-content: center;
  align-items: center;
  text-align: center;
}
