html {
    height: 100%;
}
body {
    background-color: #ac4f00;
    color: #63efef;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    height: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
    width: 95%;
}
article,
aside {
    border: 1px solid #63efef;
    background-color: #401900;
}
nav {
    padding-bottom: 2rem;
}
nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    list-style-type: none;
    padding: .5rem;
}
nav ul a {
    text-decoration: none;
    color: #63efef;
    background-color: #401900;
    padding: 1rem;
    border: 1px solid #63efef;
    transition: .5s;
}
nav ul a:hover {
    background-color: #4092ab;
    color: white;
}
main {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    gap: .5em;
    justify-content: center;
}
h1 {
    font-size: 2rem;
	text-align: center;
}
h2 {
	font-size: 1.5rem;
}
h3 {
	font-size: 1rem;
	text-align: justify;
}
article {
    flex-grow: 1;
    font-size: 1.25rem;
    padding: .75rem;
    position: relative;
    text-align: justify;
}
article > a {
    color: #63efef;
    transition: .25s;

}
article > a:hover {
    color: white;
    background-color: #4092AB;
}
article p a {
    color: #63efef;
    transition: .25s;
}
article p a:hover {
    color: white;
    background-color: #4092AB;
}
article blockquote {
    font-style: italic;
    text-align: center;
    font-weight: bold;
}
aside {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 20em;
    background-color: #401900;
}
aside img {
    width: 100%;
    /*height: 100%;*/
}

footer {
    font-size: .75rem;
    padding: .75rem;
}
.div-center {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.header-center {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 1rem;
}
.fade-in-text {
	animation: fadeIn 2s;
}
.answer {
    text-indent: 0px;
}
.answer a {
	text-decoration: underline;
	color: #63efef;
}
.answer a:hover {
	color: white;
	background-color: #4092ab;
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.question {
    background-color: #4092AB;
    color: white;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bolder;
    text-align: left;
}
.forms {
    display: block;
    padding: 1rem;
}
.forms a {
    text-decoration: none;
    color: #63efef;
    padding: 1rem;
    transition: .5s;
}
.forms a:hover {
    background-color: #4092AB;
    color: white;
}
.resource-tab {
    background-color: #4092AB;
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.resource-section {
    font-size: 2rem;
    font-weight: bold;
    background-color: #4092AB;
    color: white;
}
.resources {
    flex-grow: 0;
    flex-basis: auto;
}
.resources a {
    align-items: start;
	color: #63efef;
	padding: 1rem;
}
.resources a:hover {
	background-color: #4092AB;
	color: white;
}
.resources > p {
    padding: 1rem;
}
.resource-desc {
    font-size: 1rem;
    text-indent: 2rem;
}

@media only screen and (max-width: 650px) {
    nav ul {
        list-style-type: none;
        display: inline;
    }
    
    nav ul a {
        display: block;
        padding: .25rem;
        margin: .25rem;
        text-align: center;
        width: 90%;
    }
    main {
        display: block;
        width: 100%;
    }
    article {
        display: block;
        width: 90%;
        margin: .25rem;
        text-align: justify;
    }
    aside {
        display: block;
        float: left;
        margin-left: .25rem;
        margin-top: .5rem;
        width: 95%;
    }
    aside img {
        display:block;
        width: 100%;
    }
    footer {
        padding: 1rem;
        clear: left;
    }
}

