#nav{
  overflow: hidden;
  background-color:black;
    position: fixed;
    z-index: 1;
    width: 100%;
    top:0;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 100px;
   
}

.navText{
    background-color: black;
    float: left;
    color: white;
    text-align: left;
    padding: 10px 5px 7px 10px;
    text-decoration: none;
    font-size: 35px;
    list-style-type: none;
    margin: 5 px;
    /* code for font family from https://www.w3schools.com/cssref/pr_font_font-family.asp */
    font-family: "Times New Roman", Times, serif;
    text-decoration: underline;

}

.navActive{
    color: #696969;
}

.navNonCurrent{
    color: white;
}

.centerImage {
    /* Code for centering image used from: https://www.w3schools.com/howto/howto_css_image_center.asp */
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 14%;
    margin-top: 275px;
    border: 3px solid silver;
    position: relative;
}

.headerStyle{
    text-align: center;
    color: white;
    position: relative;
    margin-top: 20px;
    margin-bottom: 15px;
        
    
}

p{
    color:white;
    font-size: 20px;
    text-align: center;
    margin-bottom: 100px;
}


.kcBody{
    margin: 0 auto;
    /* Code for background used from: https://www.w3schools.com/html/html_images_background.asp (Next four lines)*/
    background-image: url(https://s3.amazonaws.com/cms.ipressroom.com/284/files/20160/56a27b005e8eef2de155c819_Union+Station+Skyline_02+-+Jonathan+Tasler/Union+Station+Skyline_02+-+Jonathan+Tasler_mid.jpg);
    /*background-image: url(/images/Evan_G_circuit.jpeg);*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


/* Challenge 3 */

#mainWrapper {
    width: 1101px;
    border: 6px solid dimgrey;
    border-radius: 20px;
    padding: 8px;
    height: 496px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    margin-top: 200px;
    background-color: black;
}

#rowWrapper{
    width: 428px;
    margin: 20px;
    float: left;
    
}

#leftColumn{
    padding: 20px;
    margin: 20px;
    height: 390px;
    border: 8px solid black;
    width: 241px;
    float: left;
    border-radius: 20px;
    background-color: dimgrey;
    color: white;
}

#rightColumn{
    padding: 20px;
    margin: 20px;
    height: 390px;
    border: 8px solid black;
    width: 200px;
    float: left;
    background-color: dimgrey;
    border-radius: 20px;
    color: white;
}

#topRowMiddleColumn{
    width: 372px;
    height: 190px;
    padding: 20px;
    border: 8px solid black;
    /* add border radius */
    margin-bottom: 20px;
    background-color: dimgrey;
    color: white;
    border-radius: 20px;
}

#bottomRowMiddleColumn{
    width: 372px;
    height: 120px;
    padding: 20px;
    border: 8px solid black;
    border-radius: 20px;
    background-color: dimgrey;
    color: white;
}

}
/* Clear fix hack code is from class and https://www.w3schools.com/howto/howto_css_clearfix.asp */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

h2{
    text-align: center;
    color: white;
    padding: 0;
    margin: 0;
}

/*a{
        color: white;
}



/* Challenge 4 */

table.center{
    margin-right: auto;
    margin-left: auto;
    margin-top: 200px;
}

img.mizzou{
    width: 100px;
    height: 100px.
}

td.CSDepartment{
    background-color: white;
    padding-top: 9.375em;
}

td.MathDepartment{
    background-color: dimgray;
    padding-top: 4.1em;
}

table{
    background-color: gold;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    background-color: gold;
    text-align: center;
}

#IdCardWrapper{
    width: 70%;
    background-color: white;
    border: 6px solid dimgrey;
    padding: 10px;
    height: 275px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 150px;
    box-shadow: 5px 10px black; /* https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
}
#leftIdColumn{
    display: inline-block;
    width: 30%;
    height: 100%;
    float: left;
    margin-top: auto;
    margin-bottom: auto;
    
   
}
#middleIdColumn{
    display: inline-block;
    width: 30%;
    height: 100%;
    float: left;
    margin-top: auto;
    margin-bottom: auto;
    
   
}
#rightIdColumn{
    display: inline-block;
    width: 40%;
    height: 100%;
    float: left;
    margin-top: auto;
    margin-bottom: auto;
   
}
#idPic{
    margin: 10px;
    width: 90%;
    height: 95%;
    border: 2px solid dimgrey;
}
p.id{
    text-align: center;
    color: black;
    padding: 0;
    margin: 0;
}
hr.id{
    width: 90%;
}

body{
    font-family: Arial , sans-serif;
}

/* Challenge 5 */

.extraPadding{
    margin-top: 200px;

}

#mainCardContainer{
    width: 90%;
    position: relative;
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row-reverse;
    margin: 10px auto; 
    
  /*  background-color: ; */
}

.cardContainer{
    border: 4px solid black;
    border-radius: 20px;
    width: 400px;
    height: 250px;
    background-color: silver;
    position: relative;
    margin: 5% auto;
    box-shadow: 5px 10px dimgrey; /* https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
    overflow: hidden
    
    
}

.cardImage{
    width: 40%;
    height: 100%;
    border-right: 10px double black;
    float: left;    
}

.cardContents{
    width: 60%;
    float: left;

    height: 100%;
}

.cardTitle{
    margin: 10px 0px; /* Margins dont work on spans */
    font-size: 22px;
    color: white;
    font-family: 'Roboto', serif; /* used from https://fonts.google.com/specimen/Roboto?selection.family=Roboto */
    
}
.cardDescription{
    font-size: 14px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    color: white;
    margin-bottom: 0px;
    max-height: 100%;
}

.cardLink{
    color: black;
    font-weight: bold;
    text-decoration: underline;
}

/* Challenge 6 */

#toDoWrapper{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    height: 200px;
    overflow: auto;
    border: 4px solid black;
}
#formWrapper{
    width: 90%;
   /* border: 4px solid black; */
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
   /* background-color: white; */
    color: black;
}
#toDoForm{
    align-content: center;
    width: 50%;
}
.lightMode{
    background-color: white;
}
.darkMode{
    background-color: black;
}
#darkModeButton{
    float: right;
    margin-top: 1%;
}
#headerColor{
    color: black;
    text-align: center;
}
#warning{
    color: red;
    margin-bottom: 0;
    visibility: hidden;
}
a:hover{
    color: rebeccapurple;
}