@import url('https://fonts.googleapis.com/css?family=Barlow:700|Work+Sans:400,700&display=swap');

:root {
    --background-warm-white: #FFF9F5;
    --coral-pink: #F15740;
    --coral-pink-hover: #dc5540;
    --coral-pink-active: #e65842;
    --header-blue: #003f5e;
    --shadow-blue: #003f5e4e;
    --text-body-grey: #545454;
    --text-footer-blue: #3a6479;
}

body {
    background-color: var(--background-warm-white);
    font-family: "Work Sans", Helvetica, serif;
    margin: 0;
    padding: 0vw 12vw;
}

h1 {
    color: var(--header-blue);
    font-size: 4vw;
}

h2 {
    color: var(--header-blue);
    font-family: 'Barlow', Helvetica, serif;
    font-size: 48px;
}

h3 {
    width: 100%;
    color: var(--header-blue);
    font-family: 'Barlow', Helvetica, serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin: 15px 0px;
}

p {
    line-height: 150%;
    font-size: 16px;
    color: var(--text-body-grey);
}

.myreefsBanner {
    padding-top: 5vh;
    width: 100%;
    justify-content: space-between;
}

.logo {
    width: 7vw;
    transition: scale 0.25s;
    transition-timing-function: ease-out;
}

.logo:hover {
    scale: 1.15;
}

.flexRow {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.languageLink {
    padding: 0px 8px;
}

.languageFlag {
    width: 3vw;
    min-width: 50px;
    padding: 0;
    margin: 0;
    filter: drop-shadow(0px 2px 3px var(--shadow-blue));
    transition: scale 0.2s, filter 0.3s;
}

.languageFlag:hover {
    scale: 1.1;
    filter: drop-shadow(0px 6px 7px var(--shadow-blue));
}

.footerContainer {
    justify-content: center;
    margin-top: 150px;
}

footer {
    position: absolute;
    background-color: var(--header-blue);
    width: 100vw;
    height: 50px;
    padding-top: 25px;
    color: var(--text-footer-blue);
    text-align: center;
}

.section {
    margin-top: 100px;
}

.wholeWidthContainer {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.roundedPhoto {
    border-radius: 15px;
}

.largePhoto {
    width: 50vw;
}

.veryLargePhoto {
    width: 65vw;
}