/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10 Sep 2020, 2:12:26 pm
    Author     : stang
*/
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');

html, body {
    background-color: #f2f3ed;
    height: 100%;
}
.landing {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sites {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
}
.item {
    display: inline;
    margin: 0px 50px;
    width: 200px;
    padding: 10px;
    align-items: center;
    flex-direction: column;
    display: flex;
}
img {
    display: inline-block;
}
a {
    text-decoration: none;
    text-align: center;
}
a:hover, h3:hover    {
    color: #7e560e;
}
h3 {
    text-align: center;
    display: inline-block;
    font-family: 'Fredericka the Great', sans-serif;
    font-weight: 400;
    line-height: 1.2em;
    margin-top: 0;
    color: #3b2b0c;
}
@media (max-width: 655px) {
    .landing {
        min-height: 100%;
        justify-content: flex-start;
    }
}
@media (max-height: 540px) {
    .landing {
        justify-content: flex-start;
    }
}
#navbar {
    background: #f2f3ed;
    color: #3b2b0c;
    overflow: auto;    
}

#navbar a{
    color: #3b2b0c;
}

#navbar h1 {
    float: left;
    padding-top: 20px;
}

#navbar ul {
    list-style: none;
    float: right;
}

#navbar ul li {
    font-family: 'Fredericka the Great', sans-serif;
    font-size: 1.4rem;
    float: left;
}

#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    color: #7e560e;
}