.whats-new-title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #e2eded;
}

.whats-new-title > h2 {
    margin-top: 1em;
    align-self: center;
    color: #5c5c5c;
    font-weight: bold;
}

.main {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    /* background-color: #e2eded;  */
    flex: 0;
}

/*   .main > div {
    background-color: #e2eded;
    margin: 1em 2.2em 2em;
    padding: 1em;
} */

.main > .image-stack {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 1.2em .5em;
    padding: .5em;
}

.main > .image-stack img {
    position: relative;
    align-self: center;
    background-color: #e2eded;
    margin: 0 1em;
    padding: .5em;
}

.image-stack > h3 {
    align-self: center;
    color: #8b5252;
}

.image-stack > p {
    font-size: .8em;
    text-align: center;
    /* max-width: 80px;   */
    max-width: 200px;
}

/* tooltip test */

.tooltip {
    position: relative; /* Required for absolute positioning of the tooltip */
    display: inline-block; /* Or block, depending on your layout */
    border-bottom: 1px dotted black; /* Optional: Adds a dotted underline */
}

.tooltip.tooltiptext {
    visibility: hidden; /* Hide the tooltip by default */
    width: 120px; /* Set a width for the tooltip */
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1; /* Ensure the tooltip is on top */
    bottom: 125%; /* Position below the element */
    left: 50%;
    margin-left: -60px; /* Center the tooltip horizontally */

    /* Optional: Add an arrow to the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip:hover.tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* 
.tiles-title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.tiles-title > h2 {
    margin-top: 1.5em;
    align-self: center;
}  */