

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #000000;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #000000 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btnImageControl{
    margin-right: 15px
}

.scribbleExample{
    margin-left: 50px;
}

.scribbleExampleDescription{
    margin-top: 30px;
    margin-bottom: 15px;
}

.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

.fa:hover {
    opacity: 0.7;
    color: white;
    text-decoration: none;
}
.fa:visited {
    color: white;
    text-decoration: none;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-link{
    background: #868686;
    color: white;
}

.shareLinks{
    margin-top: 20px;
}

/*
These classes ignore light and dark mode
 */
.blackBackground {
    background-image: url('/img/blackPixel.png');
}

.whiteBackground {
    background-image: url('/img/whitePixel.png');
}

.revealedImage{
    border: 2px solid;
    width: 300px
}