header img {
    display: block;
    height: 10rem;
    margin-left: auto;
    margin-right: auto;
}
nav li {
    display: inline-block;
    margin: 1%;
    padding: .5rem 1%;
}
nav li:hover {
    background-color: rgb(173, 90, 1);
    border-radius: 1rem;
    border-width: 1px 0 0 1px;
    border-color: rgb(244, 231, 231);
    border-style: groove;
    box-shadow: 2px 2px 1px 1px rgb(109, 56, 1);
}
nav li:active {
    background-color: rgb(173, 90, 1);
    border-radius: 1rem;
    border-color: rgb(109, 56, 1);
    box-shadow: 1px 1px 1px 1px rgb(109, 56, 1) inset;
}
nav a {
    color: rgb(244, 231, 231);
    text-decoration: none;
}
nav ul {
    list-style: none;
    text-align: center;
    background-color: rgb(173, 90, 1);
    border-radius: 2rem;
    padding: 0;
}
body {
    background: linear-gradient(130deg, rgb(88, 46, 1), rgb(40, 21, 1));
    background-color: rgb(88, 46, 1);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin: 3rem 5% 3rem 5%
}
h1 {
    color: rgb(244, 231, 231);
    font-size: 3rem;
    text-align: center;
    text-shadow: 1px 2px 2px rgb(109, 56, 1);
}
h1 + p {
    color: rgb(244, 231, 231);
    text-shadow: 1px 2px 2px rgb(109, 56, 1);
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 5vw 1rem 5vw;
}

h2 {
    font-size: 2rem;
    color: rgb(244, 231, 231)
}
section {
    display: flex;
    flex-wrap: wrap;
}
article {
    flex: 1;
}
.hero {
    background-image: url("/images/doug-linstedt-q07oPCdhPlw-unsplash.jpg");
    background-size:cover;
    background-clip: border-box;
    box-shadow: 2px 2px 8px rgb(6, 35, 32) inset;
    margin: .5rem;
    animation: spin 2s;
}
@keyframes spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}
.card {
    background-color: rgb(173, 90, 1);
    margin: .5rem;
    padding: .5rem;
    box-shadow: 5px 5px 5px rgb(6, 35, 32);
    border-radius: 1rem;
}
.card img {
    max-height: 10rem;
    width: 100%;
    object-fit: cover;
}

footer {
    display: flex;
    margin-top: 1.2rem;
    align-items: center;
}
footer div {
    flex: 1;
    text-align: center;
    color: rgb(244, 231, 231)
}
footer img {
    height: 2rem;
}
video {
    margin: 3vh 4vw 4vh 4vw;
}
form {
    text-align: center;
}
form div {
    margin: .5rem;
}
#submit {
    color: rgb(244, 231, 231);
    background-color: rgb(88, 46, 1);
}