@font-face {
    font-family: 'Comic Neue';
    src: local('Comic Neue Bold'), local('ComicNeue-Bold'),
        url('fonts/ComicNeue-Bold.woff2') format('woff2'),
        url('fonts/ComicNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    height:100%;
}

h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-family: 'Comic Neue';
  font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; 
    font-family: Arial, sans-serif;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ffc107;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color .3s ease;
}

button:hover {
  background-color: #b0d480;
}
