* {
    font-family: 'Crimson Text', serif;
}

body {
    background: #F4EBD0;
}

h1 {
    justify-content: center;
    padding: 0;
    width: 100%;
    text-align: center;
    color: #122620;
    text-shadow: 1px 1px #914110;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    width: 100%;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    font-size: 28px;
    line-height: 40px;
    margin: 20px 20px 20px 0;
    text-decoration: none;
    color: #914110;
}

nav ul li:not(.active) a:hover {
    opacity: 0.5;
}

nav ul li.active a:hover {
    cursor: default;
    opacity: 1;
}

nav ul li.active {
    font-weight: bold;
}

main p {
    width: 800px;
    margin: 20px auto;
    color: #122620;
}

iframe {
    display: block;
    margin: 0 auto;
}

.resources main {
    margin: 0 auto;
    max-width: 300px;
    border: 5px solid #956a28;
    outline: 1px solid #122620;
    padding: 5px 50px 30px;
}

.home p a {
    color: #956a28;
}

.resources main li a {
    color: #956a28;
}

@media only screen and (max-width: 740px) {
    iframe {
        width: 100%;
        height: fit-content;
        min-height: 500px;
    }

    main p {
        width: 100%;
        max-width: 800px;
        text-align: center;
    }
}