a {
    text-decoration: none;
    color: white;
}

body {
    font-family: "DB Screen Sans", Helvetica, Arial, sans-serif;
    color: white;
}

.header {
    display: flex;
    background-color: f7931d;
    height: 120px;
}

.header .logo {
    height: 100%;
}

.header .headline {
    /* margin-left: 1em; */
    margin-top: auto;
    margin-bottom: auto;

    font-size: 4.5vw;
    font-weight: 600;
}

.linkcolumn {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.linkbox {
    margin-top: 2vh;
    height: 8vw;
    width: 80vw;

    font-family: "DB Screen Sans", Helvetica, Arial, sans-serif;
    color: white;
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
    background-color: f7931d;
    box-shadow: 10px 10px 5px gray;

}

.linkbox:hover {
    background-color: ffab3a;
}

.linkbox .inner {
    margin-bottom: auto;
    margin-top: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}

.footer {
    
    position: fixed;
    height: 60px;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: f7931d;
    text-align: center;
    
}

.footer .footline {
    display: flex;
    height: 100%;
    /* margin-left: 1em; */


}
.footer .footline .entry {
    margin-top: auto;
    margin-bottom: auto;

    font-size: 30px;
}


.spacer {
    flex: 1 1 auto;
}