:root {
    --primary: #993300;
    --secondary: #FFFFFF;
    --background: #101010;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
        "Helvetica Neue", Arial, "Nunito", sans-serif;
    background-color: var(--background);

    /* Basics from normalize.css */
    margin: 0;
    -webkit-text-size-adjust: 100%;
    font-size: 1.5rem;
    font-weight: 400;
    /*
      Normalize.css sets line-height to 1.15 as a standard,
      but I prefer 1.5 as the base for all text,
      because it's a bit more readable and spacious.
    */
    line-height: 1.15;
}

a, h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    margin: 10px;
}

p, em, strong {
    font-family: "Montserrat", sans-serif;
    margin: 10px;
}

hr {
    margin: 15px 25px;
}

.header {
    background-color: var(--secondary);
    padding: 1px;
}

.icon {
    display: inline-flex;
    margin: 10px;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-item {
    flex: 0 1 auto;
    /* This is the shorthand for:
        flex-grow: 0;
        flex-shrink: 1;
        flex-basis: auto;
    */
}

.footer {
    background-color: var(--secondary);
    padding: 1px;
    margin-top: auto;
    bottom: 0;
    width: 100%;
    position: relative;
}

.text-primary {
    color: white;
}

.text-secondary {
    color: black;
}

.elevated {
    box-shadow: -1px 10px 15px -10px black;
}

.centered {
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.logo {
    max-width: 75%;
    max-height: 75%;
    display: flex;
    margin: 0 50px
}

.card {
    background-color: var(--primary);
    padding: 5px;
    margin: 5px 25px;
    border-radius: 10px;
}

.vertical-spacer {
    margin: 75px 75px;
}

.padded {
    padding: 15px 15px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: normal;
    row-gap: 20px;
}

@media screen and (width > 960px) {
    .main {
        max-width: 50%;
        margin: auto;
    }
}

@media screen and (width <=960px), screen and (orientation: portrait) {
    .main {
        max-width: 100%;
        margin: auto;
    }

    body {
        font-size: 1.5rem;
    }

    .grid-container {
        display: block;
    }

    .card {
        margin-bottom: 50px;
    }
}