body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: auto;
}

.container {
    display: flex;
}

.sixties-height {
    height: 60vh;
    min-height: 440px;
}

.half-height {
    height: 50vh;
    min-height: 340px;
}

.half {
    flex-grow: 1;
    padding: 32px;
}

.blue {
    background-color: rgb(0, 104, 125);
    color: white;
}

.gray {
    background-color: rgb(230, 224, 206);
    color: rgb(0, 104, 125);
}

.pink-text {
    color: rgb(244, 103, 113);
}

.pink-background {
    color: white;
    background-color: rgb(244, 103, 113);
}

.white {
    background-color: snow;
    color: rgb(0, 104, 125);
}

.centered-text {
    text-align: center;
}

.horizontally-centered {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.vertically-centered {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.container-for-centered {
    position: relative;
}

h1, h2, h3, h4 {
    margin: 0;
}

h1 {
    font-size: 48px;
}

footer {
    padding: 0.5em;
    font-size: 12px;
}

.text-right {
    text-align: right;
}

@keyframes fadein {
    0% { opacity: 0;}
    100% { opacity: 1;}
}

.hasOpacityAnimation {
    opacity: 0;
}

.opacity-animation-fast {
    animation: fadein 0.5s linear 0ms normal forwards;
}

.opacity-animation {
    animation: fadein 1s linear 0ms normal forwards;
}

.animation-delay-1 {
    animation-delay: 200ms;
}

.animation-delay-2 {
    animation-delay: 300ms;
}

.animation-delay-3 {
    animation-delay: 400ms;
}

.animation-delay-4 {
    animation-delay: 500ms;
}

.animation-delay-5 {
    animation-delay: 600ms;
}

.animation-delay-6 {
    animation-delay: 700ms;
}

.animation-delay-7 {
    animation-delay: 800ms;
}

.light-gray-text {
    color: rgb(190, 190, 190);
}

.light-gray-text-2 {
    color: rgb(170, 170, 170);
}

.light-gray-text-3 {
    color: rgb(150, 150, 150);
}

.light-gray-text-4 {
    color: rgb(130, 130, 130);
}

.vertical-padding-1 {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}

.vertical-padding-2 {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
}

.vertical-padding-3 {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
}

.vertical-padding-4 {
    padding-top: 1.6em;
    padding-bottom: 1.6em;
}

.center-flex {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.card {
    display: flex;
    flex-direction: column;
    max-width: 180px;
    padding: 2em;
    align-items: center;
    font-weight: 500;
    line-height: 22px;
}

.card p {
    padding-top: 12px;
}

.slogan h1 {
    font-size: 60px;
}

.slogan h2 {
    font-size: 40px;
}

@media only screen and (max-width: 768px) { 
    .animation-delay-1, 
    .animation-delay-2, 
    .animation-delay-3, 
    .animation-delay-4, 
    .animation-delay-5, 
    .animation-delay-6, 
    .animation-delay-7 {
        animation-delay: 200ms;
    }

    .half {
        flex-basis: 100%;
    }

    .sixties-height {
        height: 70vh;
    }
}