body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #899c95;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.icon {
    position: absolute;
    width: 160px; /* Base size of the icon */
    height: 160px;
    transition: transform 0.3s ease; /* Smooth scaling effect */
    opacity: 0; /* Initially hidden */
}

.active {
    opacity: 1; /* Show the active icon */
    transform: scale(1); /* Ensure it's at its base size */
}

.highlighted {
    transform: scale(1.2); /* Increase size by 20% */
    box-shadow: none; /* Remove any shadow if added */
}
