    @font-face {
  font-family: Pixel2;
  src: url(/fonts/pixel2.ttf);
} body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Pixel2';
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}

.title {
    font-size: 3.5em;
    margin-bottom: 10px;
}

.image {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
    padding: 10px;
}

.options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.option {
    text-decoration: none;
    font-size: 1.2em;
    color: #333;
    padding: 10px 20px;
    background-color: #ddd;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.option:hover {
    background-color: #ccc;
}
