html {
    box-sizing: border-box;
    font-family: 'Segoe UI';
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background-color: #002;
    color: white;
}

#welcome {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    h1 {
        font-size: 32pt;
        text-align: center;
        margin-bottom: 25pt;
    }

    button {
        font-size: 26pt;
        width: 50vw;
        margin-bottom: 20pt;
        padding: 12pt;
        border-radius: 8pt;

        &:hover {
            text-decoration: underline;
            cursor: pointer;
            background-color: white;
        }
    }
}