body {
    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;

    background-color: #f5f7fa;
}

p {
    margin: 0;
}

a { 
    color: inherit;
    text-decoration: none;
} 

.header {
    position:fixed;
    top:0;
    left:0;
    right:0;

    border-bottom-style:solid;
    border-bottom-width:3px;
    border-bottom-color: #8E1616;
    background-color: white;
    z-index: 100;

    height:70px;

    margin:0;
}

.inner-header {
    margin-left:auto;
    margin-right:auto;
    box-sizing: border-box; 
    width: 1230px;
    height:70px;
    padding-left: 15px;
    padding-right:15px;
    display: flex;
    flex-direction: row;
    align-items:flex-end;
    justify-content: space-between;
}

.header-logo {
    cursor: pointer;

    height:50px;
    display:flex;
    flex-direction: row;
    align-items: center;
    margin-bottom:10px;
}

.header-logo:active {
    opacity: .5;
}

.logo-image {
    height:50px;
}

.logo-name {
    font-size: 30px;
}

.header-buttons {
    display:flex;
    flex-direction: row;
}

.header-button {
    cursor: pointer;

    margin-left:10px;
    margin-right:10px;
    font-size: 20px;
}
.header-button:hover {
    text-decoration: underline;
}
.header-button:active {
    opacity: .5;
}

.content {
    width: 1230px;
    box-sizing: border-box; 
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,.25);
    margin:0;
    flex:1;
    padding-top:70px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left:auto;
    margin-right:auto;
    font-family: Lato;
}

.footer {
    background-color: #8E1616;
    color:#EEEEEE;
    width:100%;
    padding-top:3px;
    padding-bottom: 3px;
    font-family: Lato;
}

.inner-footer {
    display: flex;
    flex-direction: row-reverse;
    margin-left:auto;
    margin-right:auto;
    box-sizing: border-box; 
    width: 1230px;
    padding-right:60px;
}

.inner-footer-element {
    padding:0 15px;
}