@font-face {
    font-family: 'Amsterdam';
    src: url('assets/Amsterdam.woff2') format('woff2'),
        url('assets/Amsterdam.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Dream Avenue';
    src: url('assets/DreamAvenue.woff2') format('woff2'),
        url('assets/DreamAvenue.woff') format('woff');
    font-display: swap;
}

:root {
    --primary-color: #e4aec4;
    --secondary-color: #477e59;
    --primary-bg: #f8f1dc;
    --accent-1: #e0d8c1;
}

body {
    margin: 0;
    background-color: var(--primary-bg);
}

.header-box {
    border: 1px transparent solid;
    background-color: var(--primary-bg);
    display: flex;
    justify-content: center;
}

.hero-title-1 {
    font-family: 'Amsterdam';
    fill: var(--primary-color);
    font-size: xx-large;
}

.hero-title-2 {
    font-family: 'Dream Avenue';
    fill: var(--secondary-color);
    font-size: large;
}

.hero-banner {
    width: 75%;
}

.hero-banner-top {
    position: relative;
    top: 5vw;
}

.hero-banner-middle {
    position: relative;
    top: 2vw;
}


.hero-banner-bottom {
    position: relative;
    bottom: 4vw;
}

.picture-frame{
    display: flex;
    justify-content: center;
}

.picture-window {
    border: 0.5vw solid var(--accent-1);
    border-bottom: 0;
    border-radius: 30vw 30vw 0 0;
    padding: 3vw;
}

.picture-window img{
    border-radius: 30vw 30vw 0 0;
    max-width: 50vw;
    max-height: 70vh;
    width: auto;
    height: auto;
}

