/* Meta Tags and CSS Review */
/* This CSS file is used to style the meta tags and related elements on the website. */

/* Body styling */
body {
    background-color: #ddd;
    font-size:  20px;
}
/* Div styling */
/* Content div styling */
#content {
    max-width: 60%;
    border: 1px solid darkgrey;
    margin: 40px auto;
    padding: 50px;
}
p {
    color: #035f9c;
    font-size: 1.3em;

}
hr {
    height: 3px;
    background-color: #035f9c;
    width: 80%;
    margin-top: 50px;
}
h1, h2, p {
    text-align: center;
    
}
/* Logo styling */
/*#logos {
text-align: center;
}*/
/* image styling */
img {
    width: 50%;
    display: block;
    margin: 50px auto;
}
/* div for topic styling */
#topics {
    line-height: 1.5em;
    margin: 0 auto;
    width: 55%;
}
/* div for class list styling */
.list {
    list-style: none;
}