* {
    background-color: white;
    font-family: monospace;
    text-align: center;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.button {
    background-color: white;
    padding: 1rem;
    border-radius: 2rem;
    margin: 1rem;
    display: block;
    text-align: center;
    border: solid 1px #333;
    width: 300px;
    cursor: pointer;
}

.button:hover {
    background-color: #030;
    color: white;
}

.logo {
    display: inline;
    max-width: 100%;
}

@media only screen and (min-width: 800px) {
    .logo {
        max-width: 500px;
    }
}