html {
    background: url(https://x.boardgamearena.net/data/themereleases/221026-1000/img/layout/back-main.jpg), #f2f2f2;
}

.nav {
    font-size: 120%;
    font-weight: bold;
}

h1, h2 {
    margin: 0.3rem;
}

.control-blocks {
    display: flex;
    flex-wrap: wrap;
}

.examples {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-div {
    display: flex;
    gap: 100px;
    padding: 80px;
    position: relative;
    outline: 1px dashed blue;
    width: 500px;
}

.piece {
    background: lightgray;
    display: inline-block;
    position: relative;
    width: 60px;
    height: 80px;
    text-align: center;
    flex-shrink: 0;
}

.container {
    --min-size: 120px;

    min-height: var(--min-size);
    min-width: var(--min-size);
    outline: 3px dashed green;

    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.container.centered {
    justify-content: center;
}

.container, .piece {
    --translate-x: 0;
    --translate-y: 0;
    --rotation: 0deg;
    --scale: 1;

    transform: translate(var(--translate-x), var(--translate-y)) rotate(var(--rotation)) scale(var(--scale));
}

.title {
    position: absolute;
    top: 0;
    left: 0;
}

.show-animation-details .bga-animations_placeholder {
    background: #00008822;
}

.show-animation-details .bga-animations_placeholder-grow {
    background: #00FF0033;
}
.show-animation-details .bga-animations_placeholder-shrink {
    background: #FF000033;
}
.show-animation-details .bga-animations_animation-wrapper {
    outline: 2px dotted purple;
}

#the-void-wrapper {
    background: #00000033;
    padding: 8px;
    width: max-content;
}

.coin p{
    font-family: georgia;
    font-style: italic;
    position: absolute;
    font-size: 28px;
    z-index: 700;
    top: -19px;
    left: 19px;
    color: rgba(223,182,103,1);
}

.coin{
    cursor: pointer;
    content: "";
    width: 52px; 
    height: 52px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    z-index: 500;
    box-shadow:  2px 2px 2px 1px rgba(0, 0, 0, .1);
    background: linear-gradient(45deg,  rgba(223,182,103,1) 0%,rgba(249,243,232,1) 56%,rgba(231,192,116,1) 96%); 
}

.coin:after{
    content: "";
    width: 42px; 
    height: 42px;
    display: block;
    top: 4px;
    left: 4px;
    position: absolute;
    border-radius: 50px;
    z-index: 600;
    background: linear-gradient(45deg,  rgba(223,182,103,1) 0%,rgba(249,243,232,1) 56%,rgba(231,192,116,1) 96%);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-left: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(209,156,53,0.3);
    border-right: 1px solid rgba(209,156,53,0.5);
    box-shadow: inset 0px 0px 2px 2px rgba(153, 106, 26, .05);
}

.coin:before{
    content: "";
    width: 50px; 
    height: 50px;
    display: block;
    position: absolute;
    border-radius: 50px;
    z-index: 500;
    background: linear-gradient(135deg,  #d19c35 0%,#f7e6c5 50%,#e8b558 100%);
    border: 1px solid #e6b86a;
}