/* Variables */
:root {
    /* Background Colors */
    --inner-background-color: rgba(240, 240, 240, 0.5);
    --outer-background-color: rgb(255, 255, 255);
}

body {
    margin: auto;
    padding: 1em;
    color: #000;
    font-family: 'Lato', sans-serif;

    background-color: var(--outer-background-color);
}

/* === Universal Layout === */
.content {
    display: flex;
    flex-direction: column;

    border-width: 2px;
    border-style: solid;
    border-color: black;
    border-radius: 5px;

    padding: 1em;
    background-color: var(--inner-background-color);
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.title {
    word-wrap: none;
    width: fit-content;
}

.nav {
    display: flex;
    flex-direction: row;
}

.nav .btns {
    display: flex;
    flex-direction: row;
}

.footer {
    display: flex;
    flex-direction: row;
}

/* === Mobile Layout === */
@media(min-width: 100px) {
    
}

/* === Desktop Layout === */
@media(min-width: 768px) {
    .main {
        display: grid;
        grid-template-columns: auto;
        grid-template-areas: 
            "header header"
            "text images";
    }

    .main .header {
        grid-area: header;
    }
    .main .text {
        grid-area: text;
    }
    .main .images {
        grid-area: images;
    }
}