html {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
}

.page-title {
    font-family: "Crimson Text", serif;
    font-size: 40px;
    color: #231202;
}

body {
    background: radial-gradient(#999, #000);
    display: flex;
    align-items: center;
    flex-direction: column;
}

header {
    font-family: "Crimson Text",serif;
    font-size: 48px;
    color: #c4ac97;
    padding: 48px 0;
}

header span{
    font-size: 24px;
}

.main {
    width: 1024px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    height: 64px;
    width: 100%;
    background-image: url("../images/banner.jpg");
    display: flex;
    /*justify-content: space-around;*/

}

nav a {
    color: #7c7372;
    text-decoration: none;
    font-size: 16px;
    /*font-family: 'Oswald', sans-serif;*/
}

nav span{
    display: flex;
    align-items: center;
    width: 16.666666%;
    justify-content: center;
    border-right: 1px solid #7c7372;
}

nav span a:hover {
    color:  #c4ac97;
    text-decoration: none;
}

nav span:last-child {
    border: 0;
}

#active {
    color: #c4ac97;
}


/*Main content*/
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*height: 600px;*/
    background-color: #cccccc;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #636363;
}


/*Footer*/
footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url("../images/banner.jpg");
    height: 64px;
    color: #7c7372;
}

footer p {
    margin-right: 24px;
}

footer .icons {
    display: flex;
    margin-left: 24px;
}

footer .icons img {
    margin-right: 6px;
}

@media only screen and (min-width: 769px) {
    .small {
        display: none;
    }
}

@media only screen and (max-width: 768px) {

    .large {
        display: none;
    }

    .main {
        width: 100%;
    }

    body {
        width: 100%;
    }

    header {
        padding: 0px;
        font-size: 24px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
    }

    header span {
        display: none;
    }

    header h1 {
        margin-left: 10px;
    }

    .dropdown {
        display: block;
        position: relative;
        /*float: right;*/
        margin-right: 5px;
        color: inherit;
    }

    .dropdown button {
        padding: 0px 5px;
        margin-right: 10px;
        background-color: black;
        color:inherit;
        font-size: 24px;
        font-family: inherit;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        margin-top: 2px;
        padding-left: 5px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        width: 190px;
        background-color: gray;
        right: -5px;
        padding: 8px 0;
    }

    .dropdown-content p {
        padding: 8px 8px;
        font-size: 24px;

    }
    .dropdown:hover .dropdown-content {
        display: block;
        right: -5px;
    }

    .dropdown-content a {
        text-decoration: none;
        color: inherit;
    }

}
