:root {
    --primary-c: #002D0B;
    --bg-c: #F4F4F4;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.highlights-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--bg-c);
}

.highlight-header {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-style: italic;
    color: var(--primary-c);
    text-align: center;
    margin: 12rem 0 4rem;
    padding: 4rem;
}

@keyframes float-in-services {
    0% {    opacity: 0; 
            transform: translate(-45px,  0);
    }
    100% {  opacity: 1;
            transform: translate(0px, 0);
    }
}

.animate {
    animation-name: float-in-services;
    animation-duration: .75s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 480px) {

}

@media screen and (min-width: 481px) and (max-width: 768px) {

}

@media screen and (min-width: 769px) and (max-width: 1024px){

}


