html {
    font-family: "Perpetua", "Baskerville", "Big Caslon", "Palatino Linotype", "Palatino", "URW Palladio L", "Nimbus Roman No9 L", "serif";
}

h1 {
    font-family: "peasandradee";
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.section {
    max-width: 800px;
    height: auto;
    margin: auto;
}

.logo {
    width: 100%;
}

.columns {
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 800px) {
    .columns {
        flex-direction: row;
    }

    .column {
        padding: 0 20px;
    }
}

.left-column {
    flex-shrink: 2;
}

.left-column img {
    max-width: 300px;
}

.right-column {
    flex-grow: 2;
    justify-content: center;
    flex-direction: column;
}

.button {
    display: inline-block;
    background-color: rgb(175, 117, 136);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    min-width: 275px;
}

@font-face {
    font-family: "peasandradee";
    src:
      url("fonts/peasandradee.ttf") format("truetype"),
      url("fonts/peasandradee.woff") format("woff"),
      url("fonts/peasandradee.woff2") format("woff2");
}