html, body {
    padding: 0;
    margin: 0;
	height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font: 1em sans-serif;
    background-color: white;
}

main {
    flex: 1;
    min-height: 100vh;  
}

menu {
    list-style: none;  
    margin: 0;
    padding: 0;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.title {
    color: gray;
    font-size: 4.25vh;
    font-weight: bold;
}

.description {
    color: gray;
    font-size: 2.25vh;
    font-weight: lighter;
}

.list > li > a {
    font-size: 4.25vh;
    font-weight: bold;
    color: white;
}