html {
    height: 100%;
}

body{
    line-height: 1.5;
    font-size: 1rem;
    font-family: "Karla","Helvetica Neue",helvetica,arial,sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    height: 100%;
}

header{
    width: 100%;
    background-color: #29292A;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    line-height: 1.5;
    color: white;
}

nav{
    width: 90%;
    margin: auto;
    height: 7rem;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

nav *{
    display: inline-block;
    text-decoration: none;
    color: white;
    margin: 1.5em;
}

nav a:first-child{
    flex-grow: 1;
}

body .index-content{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.index-content a {
    text-decoration: none;
    text-align: center;
    padding: 10px;
    background-color: #29292A;
    color: white;
}

.index-content a:hover {
    background-color: #151515;
}

.content{
    width: 50%;
    margin: auto auto 3rem;
}

body div h1, body div h2{
    text-align: center;
}

footer{
    bottom: 0;
    position: relative;
    background-color: #29292A;
    width: 100%;
    height: 3rem;
    display: flex;
    align-items: center;
    align-content: center;
    color: white;
    text-align: center;
}

footer p{
    margin: auto;
}
