body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: rgba(255,174,71, 90%);
    color: #f0f0f0;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: left;
    align-items: center;
}
header div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header div img {
    width: 9rem;
    justify-self: left;
}
header div h1 {
    margin: 0;
    font-size: 2rem;
    align-self: center;
    justify-self: center;
    text-shadow: 1px 1px 1px #000;
}
nav {
    color: #f0f0f0;
    text-align: center;
    width: 100%;
}
nav ul li a {
    color: #f0f0f0;
    text-shadow: 1px 1px 1px #000;
    font-size: 2rem;
    text-transform: capitalize;
    border-bottom: 2px solid #3389A9;
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    padding-bottom: 3px;
    font-weight: 400;
    text-decoration: none;
    transition: ease-in-out 0.2s;
}
nav ul li a:hover {
    color: #3389A9;
    border-bottom: 2px solid #f0f0f0;
    transition: ease-in-out 0.3s;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-evenly;
}
nav ul li {
    display: inline;
}
main {
    margin: 0 auto;
    padding: 20px;
    background: rgb(12,148,224);
    background: linear-gradient(180deg, rgba(12,148,224,1) 20%, rgba(131,210,253,1) 70%);
}
#banner {
    text-align: center;
    padding: 10px 0;
}
#banner img {
    max-width: 100%;
}
#banner h2 {
    margin: 0;
    font-size: 2rem;
}
#section-summary {
    margin: 10px 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
#section-summary div{
    display: flex;
    justify-content: space-between;
}
#section-summary div img {
    max-width: 100%;
}
#section-summary h3 {
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-decoration: underline;
    color: #f0f0f0;
}
#section-summary div ul {
    list-style-type: "- ";
}
#section-summary div ul li {
    margin-left: 20px;
    font-size: 1.1rem;
}
#section-summary p {
    margin: 0;
    margin-top: 1rem;
    font-size: 1.1rem;
}
footer {
    background: rgb(131,210,253);
    background: linear-gradient(180deg, rgba(131,210,253,1) 0%, rgba(167,222,253,1) 100%);
    color: #0e0e0e;
    text-align: center;
    padding: 1px 0;
}
