* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
}

a {
    text-decoration: none;
}

a :hover {
    text-decoration: underline;
}

#nav {
    flex-grow: 0;
    min-width: 130px;
}

#nav li {
    list-style: none;
    padding-top: 2px;
    padding-bottom: 2px;
}

#nav li :hover {
    text-decoration: underline;
}

#swatchTitle{
    margin-top: 0.3rem;
}




main { /* the main "screen"; has a black background and a white border */
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-grow: 6;
    min-height: 50vh;
}

#mainmain {
    width: 100%;
    display: flex;
}

#sidebar {
    padding-right: 5px;
}

#things {
    display: flex;
    width: 66vw;
}

#contents{
    max-width: 70%;
}

#contents section{
    margin-bottom: 15px;
}

.gimmeALilBitOfPaddingRightHereOooh {
    padding-left: 10%;
    padding-right: 10%;
}

.lilBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
}

.lilBox img{
    max-width: 66%;
}

.centerThisShitplz{
    display: flex;
}

.gone{
    display: none;
}