body {
    font-family: 'Roboto', sans-serif;
    background-color: #575a5d07;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #00a88699;
}

a:hover{
    color: #00004B;
}

section{
    width: 100%;
}

.title {
    margin:  3% 0;

    display: flex;
    justify-content: center;

    color: #00004B;

    font-size: 1.8em;
    font-weight: lighter;
    letter-spacing: -1px;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}

.content p{
    font-size: 1.3em;

    margin-bottom: 7%;
    color: #575A5D;
    text-align: center;

}

.content > img{
    max-width: 35em;
    margin-bottom: 7%;
}

.content ul{
    list-style-type: disc;
    font-size: 1.3em;
    color: #575A5D;
    margin-bottom: 7%;
}

@media (max-width: 450px){
.content > img {
    max-width: 20em;
  }
}