
* {
    padding: 0;
    margin: 0;
    font-family: Trebuchet MS;
    color: #0a476b;
    text-decoration: none;
    text-align: center;
}
.title {
    padding: 40px;
}
 
nav ul {
    width: 80%;
    margin: auto;
    border-radius: 10px;
    list-style-type: none;
    background-color: #1286c9;
}
nav li {
    display: inline-flex;
}
nav a {
    padding: 20px;
    width: 150px;
    font-weight: bold;
}
nav ul a:hover {
    background-color: white;
}
 
.content {
    display: flex;
    width: 80%;
    margin: auto;
    margin-top: 50px;
}
.content .sections {
    width: 70%;
    margin: auto;
}
.content .sections div {
    width: 90%;
    padding: 15px;
    background-color: #69b5e0;
    border-radius: 15px;
    margin-bottom: 15px;
}
 
.sections p{
    font-size: 12px;
    font-style: italic;
    padding-bottom: 10px;
}
 
.content .sections img {
    width: 250px;
    border-radius: 15px;
}
.content #right-pane {
    width: 30%;
}
.content #right-pane p {
    background-color: #0a476b;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    color: #69b5e0;
}
 
.copyright {
    background-color: #0a476b;
    margin-top: 100px;
}
.copyright p {
    padding: 50px;
    color: #69b5e0;
}