body {
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

body > header {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 95px;
    background-color: white;
    align-content: baseline;
}

body > main {
    margin-top: 95px;
    min-height: calc(100vh - 95px);
    background-color: white;
}

body > footer {
    /* min-height: 150px; */
    /* background-color: #4D4D4D; */
    background-color: #ccc;
    color: black !important;
}

body > header,
body > footer {
    display: flex;
    justify-content: center;
}

body > header > main,
body > footer > main {
    flex: 0 1 1100px;
}

.screen {
    width: 100%;
    margin-bottom: 50px;
}

.screen > main {
    max-width: 1100px;
    margin: 20px auto;
    display: flex;
}

.screen > header {
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    background-color: gray;
    box-shadow: 0 0 10px black;
}

@media(min-width: 600px){
    .screen > header {
        height: 350px;
    }
    
}

@media(min-width: 1100px){
    body > header {
        height: 120px;
    }

    body > main {
        margin-top: 120px;
        min-height: calc(100vh - 95px);
    }
    
}