.greeting {
    font-family: Inconsolata, monospace
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
html {
    width: 100%;
    height: 100%;
    background: #222831;
    background: radial-gradient(circle, #222831 0, #393E46 100%)
}

.flex-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center
}

.greeting {
    text-align: center;
    padding: bottom 1em;
    font-size: 3.5em;
    color: #EEEEEE
}