body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #3ba3e8;
    margin: 0;
    caret-color: transparent;
    font-family: "Roboto", sans-serif;
}

.button-container {
    width: 352px;
    height: 110px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%; 
}

.button-container button {
    width: 64px;
    height: 64px;
    border: none;
    background: none; 
    cursor: pointer;
    padding: 0;
}

.button-container button img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.button-container button:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.center-box {
    width: 500px;
    height: 420px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    gap: 10px;
}

.image-box {
    position: absolute;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-box:hover {
    transform: scale(1.1) rotate(var(--rotate, 0deg));
    filter: brightness(1.2);
}

.image-box1 {
    top: 4.9%;
    left: 2%;
    width: 256px;
    --rotate: -10.7deg;
    transform: rotate(var(--rotate));
}

.image-box2 {
    top: 36.6%;
    left: 17.8%;
    width: 256px;
    --rotate: 9.15deg;
    transform: rotate(var(--rotate));
}

.image-box3 {
    top: 67.5%;
    left: 5.6%;
    width: 500px;
    --rotate: -10deg;
    transform: rotate(var(--rotate));
}

.image-box4 {
    top: 13.55%;
    left: 83.06%;
    width: 256px;
    --rotate: -12.6deg;
    transform: rotate(var(--rotate));
}

.image-box5 {
    top: 48%;
    left: 75.7%;
    width: 500px;
    --rotate: 9.4deg;
    transform: rotate(var(--rotate));
}

.tooltip {
    position: fixed;
    pointer-events: none;
    background: rgba(26, 46, 109, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 16px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

#specialimage,
.specialimage {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    pointer-events: none;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.overlay-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 50%;
    height: auto;
}

.yap {
    color: white;
    text-align: center;
}

.invis-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mdyellow { color: #eaaa00; }
.black { color: #000000; }
.big { font-size: 32px; }
.medium { font-size: 24px; }
.verysmall { font-size: 8px; }