html {
    scroll-behavior: smooth;
    font-family: Tahoma, sans-serif;
}

body {
    color: lightcyan;
    margin: 0;
}

h1 {
    font-size: 4.2rem;
    font-weight: 100;
}

h4 {
    font-size: 2.28rem;
    font-weight: 100;
}


/* Big title section */
.big-title {
    height: 100vh;
    text-align: center;
    text-transform: uppercase;
    background: url('/img/big-title-background.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.big-title .textcontent {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.big-title .textcontent > * {
    margin: 0;
}

/* Single page section */
body.single-page {
    display: flex;
    flex-direction: column;
}

section.single-page-title {
    background-image: linear-gradient(141deg, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
    color: white;
    padding: 48px;
    width: 100%;
}

section.single-page-title > * {
    text-align: center;
    font-weight: bolder;
}

section.single-page-content {
    position: relative;
    align-self: center;
    width: 90%;
    top: -20vh;
    min-height: 48vh;
    background-color: white;
    color: black;
    box-shadow: 0 2px 3px 0 rgba(51,48,46,0.1);
}

div.filler {
    height: 20vh;
}

