/* Ensure body background can change dynamically */
body {
    display: grid;
    transition: background-color 0.5s ease;
    /* Smooth background color transition */
}

b {
    color: magenta;
}

b:hover {
    color: blue;
    font-size: 10vh;
}

.rosy {
    width: 60vh;
    height: 60vh;
}

.rosy:hover {
    height: 70vh;
    width: 70vh;
}

.noah {
    width: 25vh;
    height: 25vh;
    border: 5px solid orange;
    margin-top: 3vh;
}

.noah:hover {
    border: 22px dotted blue;
    width: 80vh;
    height: 25vh;
}

.noah-page {
    size: 10vh;
    color: blue;
}

.noahb {
    background-color: purple;
}

.homo {
    display: flex;
    flex-wrap: wrap;
    object-fit: contain;
    max-width: 10vh;
    background-color: blue;
}

#re {
    size: 2vh;
}

#bouncing-button {
    position: absolute;
    width: 50px; /* Small size */
    height: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
}

#bouncing-button img {
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevent interaction with the image */
}