@font-face {
    font-family: 'Bitter'; /*a name to be used later*/
    src: url('./Bitter-VariableFont_wght.ttf'); /*URL to font*/
}

body {
    background-color: rgb(4, 26, 51);
	font-family: 'Bitter';
  }
  h1 {
    color: rgb(0, 255, 191);
	font-size: 2.5em;
  }
  h3 {
	  color: rgb(0, 255, 191);
	  font-size: 1.6em;
  }
  p {
    color: rgb(255, 208, 0);
	line-height: 120%;
	font-size: 1.2em;
  }
  .center {
    text-align: center;
  }