.container{
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    justify-content: center;
    align-items: center;
    width: 800px;
}
a{
    color: #00a3e0;
    text-decoration: none;
}
.logo-small{
    width: 200px;
    height: 120px;
}
h1{
    font-weight: 700;
    color: #00a3e0;
    font-size: 32px;
}
p{
    font-weight: 300;
    margin: 30px 0;
}
span{
    font-weight: 700;
    color: #03738b;
}
span#year{
    font-weight: 700;
    color: #00a3e0;
    font-size: 32px;
}
@media only screen and (max-width: 500px) {
    .container{
        width: 320px;
    }
    h1{
        font-size: 22px;
    }
    span#year{
        font-size: 22px;
    }
    p{
        margin: 15px 0;
    }
}