:root {
    --header-font: 'ivypresto-display', serif;
    --header-font-weight: 400;
    --header-font-thin: 100;
    --body-font: 'calmetta', sans-serif;
    --body-font-weight: 400;
}

body {
    background-color: #c3475a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--header-font);
    margin-bottom: 1rem;
}

h1 {
    font-size: 50px;
    font-weight: var(--header-font-weight);
    margin-bottom: 2rem;
}

h3 {
    font-style: normal;
    font-family: ivypresto-display, serif;
    font-weight: 100;
    font-style: normal;
    margin-bottom: 1.5rem;
}

h4 {
    padding: 1rem 0;
    border-top: dashed 1px #000;
    border-bottom: dashed 1px #000;
}

p {
    margin: 1.5rem;
}

p,
ul,
ol {
    font-family: var(--body-font);
    font-weight: var(--body-font-weight);
    font-size: 20px;
}

main.content .container-fluid .row {
    /* height: 100vh; */
    display: flex;
    flex-direction: row;
}

main.content .container-fluid .row .copy {
   padding: 4rem;
   color: #000;
   /* height: 100vh; */
   display: flex;
   flex-direction: column;
   justify-content: center;
   overflow-y: scroll;
}

main.content .container-fluid .row .copy p {
    margin: 2rem 0;
}

main.content .container-fluid .row .image {
    height: 100vh;
    padding-left: 0;
    padding-right: 0;
    overflow:hidden;
}

main.content .container-fluid .row .image img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

.btn-wrapper {
    margin-bottom: 1.5rem;
}

a.btn {
    border: solid 1px #000;
    padding: 1rem;
    border-radius: 32px;
    background: #000;
    color: #c3475a;
    font-family: var(--header-font);
    font-weight: 100;
    font-style: normal;
    font-size: 1.25rem;
    letter-spacing: .55px;
    transition: all .3s ease-in-out;
}

a.btn:hover {
    background: #c3475a;
    color: #000;
}