/* Special Gothic Expanded One and Roboto fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Expanded+One&display=swap');

body
{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.caption
{
    margin-bottom: 0;
}

nav
{
    margin-left: auto;
    margin-right: auto;
    width:70%;
    display:flex;
    justify-content: space-around;
}

#prelist
{
    margin-bottom: 0;   
}

#proposal
{
    display:flex;
    justify-content: space-around;
    margin: 5pt 5%;
}

aside,#proposaltxt
{
    background-color: lightgray;
    padding: 8pt;
    border-radius: 10pt;
    box-sizing: border-box;
}

header
{
    justify-content: center;
    align-items: center;
    display:flex;
    gap: 20pt; /* Saw this gap attribute on stackoverflow */
    text-align: center;
    font-family: 'Special Gothic Expanded One', Arial, sans-serif;
}

header img
{
    max-height: 100pt;
}

p
{
    font-size: large;
}

#proposaltxt
{
    flex-basis:60%;
    max-width: 60%;
    margin-top: 0pt;
    box-sizing: border-box;
}

aside
{
    flex-basis: 37%;
    max-width: 37%;
}

aside img
{
    max-width: 90%;
}

#pallete
{
    display:flex;
    justify-content: space-evenly;
}

.square
{
    width: 30%;
    height: 40pt;
}

.red
{
    background-color: rgb(185, 31, 31);
}

.white
{
    background-color: rgb(255, 255, 255);
}

.black
{
    background-color: rgb(0, 0, 0);
}