:root {
    --transition-time: 0.3s;
    --dark-brand-color: #683837;
    --light-brand-color: #b4b1a0;
}

@font-face {
    font-family: 'Big Caslon Medium';
    src: url('fonts/Big Caslon Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    margin: 0;

    background: #000;
    color: #fff;

    font-family: 'Josefin Sans', sans-serif;
}

p {
    margin-bottom: 1.5em;
    line-height: 1.5;
    font-weight: 300;
    font-size: 22px;
    /* hyphens: auto; */
    /* text-align: justify; */
}

header,
main,
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    flex: 1;
    padding: 0 130px;
    box-sizing: border-box;
    width: 100%;
}

h1.page-title {
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-family: 'Abel', sans-serif;
    font-size: 48px;
    padding: 30px 0;
    letter-spacing: 4.4px;
    font-weight: 300;
    margin: 50px 0;
}

h1.page-title::before,
h1.page-title::after {
    width: 35%;
    min-width: 200px;
}

h2.page-title {
    font-size: 42px;
}

h3 {
    font-size: 32px;
    font-weight: 700;
}

strong {
    font-weight: bold;
}

.cta {
    box-sizing: border-box;
    margin: 25px 15px;
    text-align: center;
}

.cta-button {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 32px;
    text-decoration: none;
    text-align: center;
    font-family: "Abel";
    background-color: var(--dark-brand-color);
    color: #fff;
    line-height: 2;
    border-radius: 12px;

    transition: background-color var(--transition-time), color var(--transition-time);
}

a.cta-button:hover {
    background-color: var(--light-brand-color);
    color: var(--dark-brand-color);
}

.lined::before,
.lined::after {
    background: linear-gradient(to right, var(--dark-brand-color), var(--light-brand-color));
    content: '';
    position: absolute;
    height: 1px;
}

.lined::before {
    top: 0;
}

.lined::after {
    bottom: 0;
}

.page-top-image img {
    max-width: 1350px;
    width: 100%;
    margin-bottom: 50px;
}

.page-bottom-image img {
    max-width: 1350px;
    width: 100%;
    margin-top: 100px;
}

@media only screen and (max-width: 1200px) {
    main {
        padding: 0 50px;
    }

    p {
        font-size: 20px;
    }

    .cta {
        margin: 20px 10px;
    }

    .cta-button {
        font-size: 26px;
    }
}

@media only screen and (max-width: 992px) {
    h1.page-title {
        font-size: 36px;
        margin: 35px 0;
    }

    h2.page-title {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 22px;
    }
}

@media only screen and (max-width: 768px) {
    main {
        padding: 0 30px;
    }

    h1.page-title {
        font-size: 26px;
        margin: 20px 0;
    }

    h2.page-title {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .cta {
        margin: 16px 8px;
    }

    .cta-button {
        padding: 6px 18px;
        font-size: 20px;
    }
}
