*{
    margin: 0;
    padding: 0;
    font-family: 'Macondo', cursive;
}


#outer-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#outer-wrapper button{
    padding: 8px;
    margin: 8px;
    font-weight: bolder;
}

#title{
    padding: 25px;
    margin-bottom: 20px;
}

#canvas{
    width: 600px;
    height: 600px;
    border: 10px solid black;
    box-shadow: inset;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
}

.boxColored{
    background-color: gray;
}

#outer-text-box-wrapper{
    text-align: center;
}

#content-text-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: large;
    padding: 25px;
    text-align: center;
    gap: 25px;
}

#quantity{
    width: 50px;
}

#instructions{
    font-size: larger;
}

#footer{
    margin-top: auto;
    padding: 25px;
    font-family: Roboco, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    background-color: gray;
}

#footer a{
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

#footer a:hover{
    color: yellowgreen;
    transform: scale(1.2);
}

.left-side,
.center,
.right-side{
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: left;
}