
@import url(/css/common/animations.css); /* lmao */

body {
    justify-content:unset;
}

.clicker-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 50%;
    height: 500px;
    text-align: center;
    /* background-color: #ffffff27; */
}



.clicker-button {
    width: 150px;
    height: 150px;
    background: url("/images/circle_HD.png") no-repeat center center;
    background-size: cover;
    border: none;
    /* animation: clicker-unhover 0.25s ease-in-out backwards; */
}

.clicker-button:hover {
    /* animation: clicker-hover 0.25s ease-in-out forwards; */
    background: url("/images/circle_HD.png") no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

.burst {
    width: calc(640px*3);
    height: calc(360px*3);
    transform: translate(-150px, 0);
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(216deg) brightness(108%) contrast(102%);
    opacity: 0;
    position: fixed;
    /* object-fit: cover; */
    /* animation: shake 0.25s linear infinite; */
}

.shop-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    position: relative;
}

.shop-container > * {
    width: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.shop-display {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    width: 100%;
    height: 30%;
    position: relative;
    /* background-color: #ffffff10; */
}