/*This is the for the layout of the page. Everything must be in main*/
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../images/ClimerlabsBanner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0;
    height: 400px;
}

.words {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    margin-bottom: 5px;
}

.subwords {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.navigation {
    display: flex;
    flex-direction: row;
    align-items: stretch; 
    justify-content: center;
    background-color: #333;
    padding: 10px;
    width: 100%; 
    
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 10px;
    text-align: center;
}

.navigation a:hover {
    background-color: #575757;
}