.graphicssubheader {
    background-image: url(decor/BGS/tile/aesthetics/dots/tinydots.gif);
    border: 1px dotted black;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    align-items: center;
}

.graphicscontent {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
}

.stamp {
    width: 99px;
    height: 56px;
    transition: transform 0.25s ease;
}

.stamp:hover {
    transform: scale(0.9);
}

.stamp:active {
    transform: scale(0.8);
}
           
.blinkie {
    width: 150px;
    height: 20px;
    transition: transform 0.25s ease;
}

.blinkie:hover {
    transform: scale(0.9);
}

.blinkie:active {
    transform: scale(0.8);
}
            
.button {
    width: 88px;
    height: 31px;
    transition: transform 0.25s ease;
}

.button:hover {
    transform: scale(0.9);
}

.button:active {
    transform: scale(0.8);
}
            
.pixel {
   transition: transform 0.25s ease;
}

.pixel:hover {
    transform: scale(0.9);
}

.pixel:active {
    transform: scale(0.8);
}
            
.divider {
    max-width: 100%;
    transition: transform 0.25s ease;
}

.divider:hover {
    transform: scale(0.9);
}

.divider:active {
    transform: scale(0.8);
}
            
.gifs {
    max-width: 150px;
    max-height: 150px;
    transition: transform 0.25s ease;
}

.gifs:hover {
    transform: scale(0.9);
}

.gifs:active {
    transform: scale(0.8);
}

.clicky {
    transition: transform 0.25s ease;
}

.clicky:hover {
    transform: scale(0.9);
}

.clicky:active {
    transform: scale(0.8);
}