html, body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("website_background.gif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    justify-content: center;

}

.content-box {
    width: 78vw;
    max-width: 1200px;
    min-height: 100vh;

    background: rgba(55, 0, 20, 0.78);
    color: white;

    padding: 55px 70px;
    box-sizing: border-box;

    border-left: 4px solid #ff8fa3;
    border-right: 4px solid #ff8fa3;

    box-shadow: 0 0 30px rgba(255, 80, 120, 0.45);
}

.header-gif {
    width: calc(100% + 140px);

    margin-left: -70px;
    margin-right: -70px;

    margin-top: -55px;   /* matches top padding */

    overflow: hidden;
}

.header-gif img {
    width: 100%;
    height: auto;

    transform: scaleY(.2);
    transform-origin: top;
}
body {
    font-family: Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
}

h2 {
    font-size: 2rem;
    margin-top: 35px;
    border-bottom: 2px dashed #ffb3c1;
    width: fit-content;
}

p {
    max-width: 750px;
}
nav a {
    display: inline-block;
    color: white;
    text-decoration: none;

    background: rgba(120, 0, 40, 0.8);
    border: 2px outset #ffb3c1;

    padding: 6px 14px;
    margin-right: 8px;
    margin-bottom: 30px;
}