@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../styles/fonts/PPNeueMontreal-Regular.woff2') format('woff2'),
        url('../styles/fonts/PPNeueMontreal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../styles/fonts/PPNeueMontreal-Medium.woff2') format('woff2'),
        url('../styles/fonts/PPNeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #a87932;
    font-family: 'PP Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    min-height: 100vh;
    padding: 1rem;
}

a {
    color: rgb(1, 1, 140);
}

.container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.content-left,
.content-right {
    display: flex;
    flex-direction: column;
}

.content-right {
    gap: 1rem;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 32rem;
}

.supplemental {
    display: flex;
    gap: 1rem;
}

.introduction {
    max-height: calc(100vh - 2rem);
    overflow: auto;
}

.thoughts {
    max-height: 20rem;
    overflow: auto;
}

.media,
.introduction,
.thoughts,
.contact-info,
.info-block {
    background-color: #f9f5e2;
    padding: 1rem;
    outline: 2px solid black;
    max-width: 32rem;
}

.info-block {
    max-width: 100%;
}

.introduction p,
.thoughts p,
.thoughts ul,
.contact-info p {
    max-width: 30rem;
    overflow-wrap: break-word;
    margin-bottom: 0.75rem;
}

.introduction p:last-of-type,
.thoughts ul:last-of-type,
.contact-info p:last-of-type {
    margin-bottom: 0;
}


.thoughts p:last-of-type {
    margin-bottom: 0.5rem;
}

.introduction p:first-of-type,
.thoughts p:first-of-type,
.contact-info p:first-of-type {
    margin-top: -0.25rem;
}

ul {
    line-height: 1.75rem;
}

li {
    list-style: square;
    margin-left: 1rem;
}

.section-header {
    margin-bottom: 1.75rem;
}

.topic-one {
    background-color: #e3c79d;
}

.topic-two {
    background-color: #89ad80;
}

.topic-three {
    background-color: #9db1e3;
}

.topic-four {
    background-color: #fcb33d;
}

.topic-five {
    background-color: #b09bc4;
}

.topic-six {
    background-color: #e6786c;
}

.topic-seven {
    background-color: #bacfc9;
}

video {
    width: 32rem;
    max-width: 100%;
    height: auto;
    display: block;
    border: 2px solid black;
    transition: 1.5s;
    filter: grayscale(0);
}

video:hover {
    filter: grayscale(1);
    transform: rotate(-2deg) scale(1.01);
}

.subscribe-box {
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s ease;
}

input[type="email"] {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    outline: none;
    background-color: transparent;
}

button {
    border: none;
    background-color: transparent;
    font-size: 1rem;
    cursor: pointer;
}

.hidden {
    display: none;
}

::selection {
    color: #915c0c;
}

.email {
    background-color: rgba(255, 208, 0, 0.75);
    padding: 0 0.25rem;
    cursor: pointer;
    user-select: text;
}

.email:hover {
    background-color: rgba(255, 208, 0, 1);
}

.copied-msg {
    color: darkgoldenrod;
    margin-left: 0.25rem;
    display: none;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 1rem;
    background-color: white;
    border-top: 2px solid black;
}


@media only screen and (min-width: 992px) {
    .container {
        display: flex;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .introduction {
        max-height: auto;
    }

}