@import url('https://fonts.googleapis.com/css?family=Roboto:300&display=swap');

/*Defaults*/
body {
    margin: 0;
}
a {
    color: inherit;
}
a:focus {
    outline: none;
}

/*Variables*/
:root {
    font-size: 1.5vh;
}

/*Layouts*/
.main {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*Colors*/
.color--whiteonblack {
    background-color: black;
    color: white;
}

/*Fonts*/
.font--default {
    font-family: Roboto, sans-serif;
}
.font--default a {
    text-decoration: none;
}
.font--default a:hover {
    text-decoration: underline;
}

/*Desktop media query -> implement mobile layout first!*/
@media only screen and (min-width: 420px) {

    :root {
        font-size: 2vh;
    }
}
