body {
    background-color: #fbc326;
    margin: 60px
}

.titleHeader {
    margin: 20px 10px 0px 0px;
    padding: 0px 30px 0px 0px;
    text-align: left;
    font-size: 35px;
}


h1 {
    font-family: 'Six Caps', sans-serif;
    margin-top: 0px;
    padding-top: 0px;
}

.about {
    font-size: 25px
}

span {
    color: #d4320e;
}

.flexContainer {
    /* Your code here */
    display: flex;
    /* flex-direction: column; */
    /* COlumn puts everything below each other like a column */
    text-align: center;
}

.flexItem {
    font-family: 'Montserrat', sans-serif;
    padding: 30px;
}

img {
    width: 480px;
}

h4,
h3,
p,
h2,
label,
nav,
li {
    font-family: 'Montserrat', sans-serif;
}

.title {
    margin-bottom: 5px;
}


/* Add a background color to the top navigation */

.siteNav {
    overflow: hidden;
}


/* Style the links inside the navigation bar */

.siteNav a {
    float: left;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}


/* Change the color of links on hover */

.siteNav a:hover {
    background-color: #1d7d9e;
    color: white;
}


/* Add a color to the active/current link */

.siteNav a.active {
    background-color: #1d7d9e;
    color: white;
}

.main {
    float: left;
    width: 60%;
    padding: 0 20px;
}

.right {
    float: left;
    width: 20%;
    padding: 15px;
    margin-top: 7px;
}

/* Home page specific styling */
.homeTitleHeader {
    font-family: 'Six Caps', sans-serif;
    text-align: left;
    font-size: 90px;
}

.quizButton {
    background-color: #d4320e;
    border: none;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    padding: 32px 16px;
    transition-duration: 0.4s;
}

.quizButton:hover {    
    animation-name: colors;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

@keyframes colors {
    100% {
       background-color: #1d7d9e;
       color: white;
    }