body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: monospace;
}

#logo {
    /* You can adjust width or height as needed */
    max-width: 50ch;
    /* Optional: if you want to maintain the aspect ratio of the logo */
    height: auto;
}

main {
    max-width: 30ch;
    text-align: center;
    font-size: 14px;
}

p:hover {
    background-color: #ffffb5;
}
