html {
    min-height: 100%;
}
body {
    /* Basic bg */
    min-height: 100%;
    background: rgb(0,86,97);
    background: linear-gradient(0deg, rgba(0,86,97,1) 0%, rgba(33,194,180,1) 100%); 
    background-repeat: no-repeat;

    /* Content */
    color: white;
    margin: 24px;
    text-align: center;
    padding: 5%;

    /* Typography */
    font-family: sans-serif;
    
}

/* main {
    margin-top: 25%;
} */

/** TYPOGRAPHY **/

h1, h2 {
    font-family: 'Caudex', serif;
    font-weight: 400;
    line-height: 110%;
}

p {
    font-family: serif;
    line-height: 150%;
    margin-bottom: 0.75rem;
    margin-top: 0;
}


a {
    color: darkseagreen;
}

/** IMAGES **/

/*** ANIMATIONS ***/

@keyframes appear {
    0% {transform: scale(25%); opacity: 0% ;}
    100% {transform: scale(100%); opacity: 100%;}
    
}

@keyframes hoverAround {
    0% {transform: translateY(5px);}
    100% {transform: translateY(0px);}
}

.frontpagePlaceholder {
    max-width: 80%;
    position: relative;
    animation: appear 3s, hoverAround 1s infinite alternate;
    

}

.imageContainer {
    position: relative;
}