header {
    background-image: linear-gradient(to right, #FFD204 55%, rgba(255, 210, 85,0.3));
    height: 80vh;
    position: relative;
}

header:after {
    content: '';
    background-image: url("/assets/images/header-image.jpg");
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

nav {
    height: 10vh;

    display: flex;
    align-items: center;
    min-height: 80px;
}

h1, h2, h3 {
    font-family: "big-caslon-fb", serif;
    font-weight: 400;
    font-style: normal;
}

footer {
    padding: 20px;
    height: 10vh;
    display: flex;
    align-items: center;
    min-height: 40px;


}