@font-face {
   font-family: 'SM64SignFont';
   src: url('fonts/SuperMario64SignFont.otf') format('opentype');
   font-weight: normal;
   font-style: normal;
}

@font-face {
   font-family: 'SM64HUDFont';
   src: url('fonts/SuperMario64HudFont1.1.otf') format('opentype');
   font-weight: normal;
   font-style: normal;
}

body {
   background-color: black;
   color: white;
   font-family: SM64SignFont;
   margin: 1rem;
   line-height: 1.3;
   font-size: large;
}

h1 {
   color: red;
   font-family: SM64HUDFont;
   font-size: 250%;
   margin-top: 1rem;
}

.button {
   font-family: SM64HUDFont;
   text-align: center;
   margin: 3px;
   padding: 8px;
   background-color: #4141ff;
   padding: 8px;
   border-radius: 8px;
   transition: ease 0.5s;
}

.button:hover {
   background-color: black;
}

.button a {
   text-decoration: none;
   color: white;
}

.button a:hover {
   color: #5182ff;
}

img {
   margin: auto;
   max-width: 400px;
}