#stamps {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #0000007f;
    backdrop-filter: blur(5px);
}

#stamps {
    display: none;
}
#stamps:target {
    display: block;
}

#stamp-container {
    background-color: #30363f;
    width: 800px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    overflow-y: scroll;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    color: white;
    text-align: center;
    font-family: "Ubuntu";
}

#stamp-container button {
    background-color: #000;
    border: none;
    color: #fff;
    padding: 8px;
    font-family: "Ubuntu";
    font-size: 16px;
    transition-duration: 0.3s;
}

.stamp-container-section {
    padding: 8px;
    margin: 8px 0;
    background-color: #30363f;
    width: 100%;
    transition-duration: 0.3s;
}

.stamp-container-section:hover {
    background-color: #40464f;
}

#stamp-container button:hover {
    background-color: #111;
}

#stamp-container h1,
#stamp-container h2,
#stamp-container h3 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.stamp-display-subtitle {
    font-size: 12px;
    color: #999;
}

.stamp-display {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    gap: 2px;

    justify-content: center;
    align-items: center;
}

.stamp {
    perspective: 10cm;
    display: block;
    background-color: #60666f;
    width: 88px;
    height: 31px;

    position: relative;
    z-index: 0;
}

.stamp:hover {
    z-index: 1000;
}

.stamp img {
    transition-duration: 0.1s;
    image-rendering: pixelated;
    position: static;
    transform-style: preserve-3d;
}

.stamp img:hover {
    filter: brightness(1.1);
}
