.main {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    height: 100vh;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
    }

    div {
        color: white;
    }
}

input {
    font-family: 'Roboto Mono', monospace;
}

body {
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0;
}

.hide {
    display: none;
}

.center-text {
    text-align: center;
}

.is-the-shit-header {
    margin: 10px;
}

.is-the-shit-image {
    width: 100%;
    height: auto;
}

button:focus {
    outline:0;
}

.input-with-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

a:visited {
    color: inherit;
}