/* CSS for Mission Statement */
/* Author: Casey Heyrend */

/* Body styling */
body {
    /* display: grid;
    place-items: center;
    min-height: 100vh;
    margin: 0; */
    background: #FFFFFF;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.1rem;
    /* Light Mode*/
    background-color: white;
    transition:0.3s;
}
/* Dark Mode */
body.dark {
    background-color:#3B3B3B;/* Was 222, */
    color: white;
}

/* Content styling */
#content {
    max-width: 800px;
    margin: 40px auto;
    padding: 60px;
    border: 1px solid #B8B8B8;
    /*background-color: #FFFFFF;*/
    line-height: 1.6;
}
/* Heading styling */
h1 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal;
    font-size: 3rem;
    margin-bottom: 0px;
    font-weight:400;
}
/* School name styling */
.school {
    text-align: center;
    text-transform: uppercase;
    color: #438DC7; /* BYU Idaho blue */
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1;
}
/* Horizontal rule styling */
hr {
    border-top: 1px solid #DEDEDE;
    width: 85%;
    margin-top: -4px;
}
/* Paragraph styling */
p {
    text-align: left;
    margin: 20px auto;
    padding-left: 20px;
}
/* Statement styling */
#statement {
    text-align: left;
    margin: 20px auto;
    padding-left: 20px;
}
.list {
    list-style-type: decimal;
    padding-left: 70px;
}
.list li {
    margin-bottom: 15px;
}
/* Image styling */
img {
    text-align: center;
    display: block;
    margin: 30px auto 0;
    width: 150px;
}
