body {
    font-size: 18px;
    font-family: "Tahoma";
    background-size: 100vw;
    background-position: top;
    background-image: url(images/bg.png);
    background-repeat: no-repeat;
    height: 100%;
    image-rendering: pixelated;
    margin: 0;
    background-color: #dbb575;
    display: flow-root;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: cornflowerblue;
}

p {
    text-align: left;
    padding: 0 1.3rem;
}

span {
    display: block;
    padding: 0 0.5rem 0.2rem;
}

h1 {
    text-align: center;
    background: #890010;
    padding: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    font-size: 1.5rem;
}

h2 {
    background-image: linear-gradient(chocolate, brown);
    padding: 0.3rem;
    font-weight: bold;
    color: ghostwhite;
    margin: auto;
    font-size: 1.3rem;
}

ul {
    text-align: left;
    list-style: disclosure-open;
}

li {
    cursor: pointer;    
}

li:hover{
    color: #4c84c4;
}

.answer {
    color: bisque;
    max-height: 500px;
    transition: max-height 0.25s ease-in;
}

.hide {
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
}


.closed {
    list-style: disclosure-closed;
}

iframe {
    max-width: 800px;
    width: 90%;
    min-height: 70vh;
    border: none;
}

.gform {
    background-color: #4c84c4;
}

.youtube {
    width: 100%;
    height: 29vw;
    min-height: 286px;
}

.container {
    min-width: 60vw;
    max-width: 800px;
    background-color: rgba(29, 28, 28, 0.9);
    margin: 1rem auto;
    color: #fff;
    padding: 1rem;
    width: 90%;
}


.content-container {
    text-align: center;
}

.youtube-container {
    height: 450px;
    width: 94%;
    margin: auto;
    display: inline-block;
}


.sharebtn {
    background: cornflowerblue;
    padding: 0.4rem 1rem;
    border-radius: 0.3rem;
    transition: all 0.23s ease-in-out 0s;
}

.sharebtn:hover {
    font-size: 1.2rem;
    color: khaki;
}

input {
    font-size: 1.4rem;
    margin-top: 1rem;
    width: 60vw;
    max-width: 350px;
}

.menu-item {
    padding: 15px 0.5vw;
    display: inline-block;
    margin: 0.5vw 0;
    background-image: url(images/btnbg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 25vw;
    max-width: 140px;
    font-size: 1.4rem;
}

.gdwc {
    padding: 15px 0.5vw;
    display: inline-block;
    margin: 0.5vw 0;
    background-image: url(images/gdwc.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25vw;
    height: 25vw;
    image-rendering: smooth;
    opacity: 0.9;
}

.gdwc:hover {
    opacity: 1;
    scale: 1.01;
}

.menu-item:hover {
    color: rgb(183, 206, 249);
}

@media only screen and (max-width: 850px) {
    .youtube-container {
        height: 50vw;
        width: 100%;
    }
}