@import url("https://fonts.googleapis.com/css?family=Fira+Code|Noto+Sans:300,400,600");

:root {
    --dark: rgb(20, 102, 123);
    --light: rgb(237, 249, 252);
}

* {
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: none;
    -webkit-touch-callout: none;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-color: var(--dark);
    color: var(--light);
    font-family:
        Noto Sans,
        Helvetica Neue,
        Arial,
        sans-serif;
    font-size: 15px;
    letter-spacing: 0;
    margin: 0;
    overflow-x: hidden;
}

main {
    width: 100%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

span.footer-text {
    font-size: 0.75em;
}

img#large-dark-logo {
    width: 40%;
    height: 40%;
}
