@import url('./font-sherwood.css');
@import url('https://fonts.googleapis.com/css?family=Lato|Roboto');

html,
body {
    padding: 0;
    margin: 0;
    background-color: #eee;
    font-family: 'Roboto', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

nav {
    background-color: #fff;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    font-family: 'Lato';
}

nav a {
    text-decoration: none;
    color: blue;
}

nav a:hover {
    text-shadow: 0px 0px 2px black;
}

.FixedWidth {
    margin: auto;
    width: 1000px;
}

.card {
    background-color: #fff;
    margin-top: 15px;
    padding: 5px 25px;
    box-shadow: 0 8px 16px 0px rgba(0, 0, 0, 0.2)
}

.card h1,
.card h2,
.card h3 {
    text-align: center;
    font-family: 'Sherwood';
    font-weight: 300;
}

@media only screen and (max-width: 1000px) {
    FixedWidth {
        width: 100%;
        margin: 10px;
    }
}
