html {
    height: 100%;
}

body {
    background-color: #fff;
    font-family: "Roboto", "Helvetica Neue", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
}

.col {
    flex: 1;
    padding: 10px;
}

h1 {
    font-weight: 300;
}

a {
    color: RGBA(142, 186, 215, 1.00);
}


img {
    width: 100%;
    max-width: 200px;
}


@media only screen and (min-width: 600px) {
    .container {
        flex-direction: row;
    }
}