/* 1. Register the custom TTF font */
@font-face {
  font-family: 'Fredoka';
  src: url('Fredoka.ttf') format('truetype');
}

/* 2. Apply styles and the font to your website */
body {
  background-color: #505566;
  color: white;
  font-family: 'Fredoka', sans-serif;
  text-align: center;
}