@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@300;400;700&display=swap');

body {
    background-color: #232;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.maincont {
    display: flex;
    align-content: center;
    justify-content: center;
    height: 100vh;
    flex-wrap: wrap;
}

.formcont {
    width: fit-content;
    height: fit-content;
    padding: 24px;
    background: #111;
    color: white;
    border-radius: 12px;
    box-shadow: #0008 8px 8px 8px;
}

input[type="submit"] {
    appearance: none;
    cursor: pointer;
    background-color: #333;
    border: 0;
    padding: 8px;
    margin: 16px 0;
    width: 100%;
    color: inherit;
    font-family: inherit;
    font-size: smaller;
    display: block;
    border-radius: 12px;
    box-shadow: #0008 2px 2px 8px;
}

input[type="submit"]:hover {
    background-color: #444;
}

input[type="submit"]:active {
    background-color: #555;
}

input[type="date"] {
    background-color: #222;
    border: none;
    color: inherit;
    padding: 8px;
    margin-inline: 8px;
    font-size: inherit;
    appearance: none;
    outline: none;
    border-radius: 12px;
}

#outtext {
    text-align: center;
}

.backtohome {
    position: absolute;
    top: 0;
    left: 0;
    font-family: monospace;
    font-size: 12px;
}

.backtohome a {
    color: white;
    text-decoration: none;
}