html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-color: white;
    background-repeat: repeat;
    background-size: 64px;
    opacity: 0%;
}

.main-container {
    margin: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.controls {
    flex-direction: row;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5em;
    background: white;
}

.control-spacer {
    flex: 1;
}

button {
    font-size: 1em;
    border-radius: 50%;
    border: 0px;
    background: transparent;
}

#color {
    height: 3em;
    border: 0px;
    background: transparent;
}

#new-doc-popup {
    display: none;
    position: absolute;
    width: 45%;
    height: 45%;
    top: 25%;
    left: 25%;
    background: white;
    border: 1px black solid;
    border-radius: 2.5em;
    padding: 2.5%;
}

 .activetool {
    outline: none !important;
    color: black !important;
}

.inactivetool {
    border: 0px;
    color: #999999 !important;
} 

.inactivetool :focus {
    outline: none !important;
}

.popup-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: larger;
}

.support {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 1em;
    background-color: white;
    border-top: 2px solid black;
    border-left: 2px solid black;
    border-radius: 40px 0px 0px 0px;
    text-align: right;
    vertical-align: middle;
    padding-right: 0.5em;
}

.support a {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    color: #ff3073;
    text-align: right;
}

.fa-heart {
    color: #ff3073;
    vertical-align: middle;
}

.canvas-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px black solid;
    background-color: white;
}