/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #f1f1fa;
opacity: 0.8;
background-image:  radial-gradient(#C3B1E1 1px, transparent 1px), radial-gradient(#C3B1E1 0.5px, #f1f1fa 0.5px);
background-size: 20px 20px;
background-position: 0 0,10px 10px;;
  color: #000;
  font-family: Tahoma;
}

@font-face {
  font-family: myFont; 
  src: url(https://fonts.cdnfonts.com/css/pixel-gamer-personal-use); 
}

h1 {
  font-family: 'Pixel Gamer Personal use', sans-serif;
}

@font-face {
  font-family: myFont; 
  src: url(https://fonts.cdnfonts.com/css/superhelio); 
}

p {
  font-family: 'superhelio _regular', sans-serif;

}

<style>
@import url('https://fonts.cdnfonts.com/css/pixel-gamer-personal-use');
</style>

<style>
@import url('https://fonts.cdnfonts.com/css/superhelio');
</style>
