@import "_fonts/roboto.css";
@import "_fonts/roboto_condensed.css";

html, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    width: 100%;
    height: 100vh;
    vertical-align: middle;
    align-items: center;
    justify-items: center;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1em;
    overflow-x: hidden;
    overflow-y: scroll;
}

main {
    display: inline-flex;
    justify-items: center;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
}

h1 {
    margin: 0 0 10px;
    font-family: "Roboto Condensed", "Roboto", Arial, Helvetica, sans-serif;
    font-size: 250%;
}

p {
    margin-top: 0;
}