.bebas {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.noto-serif {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.87);
    background-color: #2e5890;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    background-image: url("../img/bridge.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}

a {
    color: inherit;
    text-decoration: inherit;
}

img {
    max-width: 100%;
    height: auto;
    margin-right: 2em;

}

div.headshot {
    text-align: right;
}

p.quote {
    font-size: x-large;
    text-align: right;
    padding-right: 2em;
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
    font-style: italic;
}

p.bio {
    font-family: "Noto Serif", serif;
    font-style: italic;
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
}

p.book_title {
    margin-top: 3em;
    margin-bottom: 0;
    font-size: 5em;
    letter-spacing: 0.2em;
    word-spacing: 0.4em;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}

p.subtitle {
    font-size: 2em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0.25em;
}

.container {
    display: flex;
    flex-direction: row;
}

.left_column {
    flex: 40%;
    padding-top: 8em;
    padding-right: 2em;
}

.right_column {
    flex: 60%;
    padding-top: 6em;
    margin-right: 2em;
}
#headshot {
    width: 240px;
    border: 5px solid white;
}

@media only screen and (max-width: 2000px) and (device-pixel-ratio: 2),
       only screen and (max-width: 1280px) and (device-pixel-ratio: 3),
       only screen and (max-width: 640px)
{
    p.book_title {
        margin-top: 1em;
    }

    .container {
        display: flex;
        flex-direction: column;
    }

    .left_column {
        flex: 1;
        padding-top: 2em;
        padding-left: 2em;
        padding-right: 2em;
    }

    .right_column {
        flex: 1;
        padding-top: 0;
        margin-top: 0;
        margin-left: 2em;
        margin-right: 2em;
    }

}