body {
    font-family: 'Bree Serif', sans-serif;
    font-size: 16px;
    color: #333;
    padding: 0;
    margin: 0;
    background-color: #f4f4f4;
}

h1, h2 {
    color: #354458;
    margin-top: 10px;
    margin-bottom: 10px;
}

#home h1 {
    color: #354458;
}

section {
    padding: 20px;
}

#home {
    background-color: #354458;
    color: #fff;
}

#home h1 {
    font-size: 38px;
    color: #fff;
}

#services ul {
    list-style-type: circle;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animated-section {
    animation: 500ms ease-out 0s 1 slideInFromBottom;
}