* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

.translucent-div {
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 0.5%;
    border-radius: 6px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: 165px;
    font-size: 1.10rem;
    transition: all 0.3s;
    box-shadow:0px 1px 10px rgba(0,0,0,0.2);
}

.translucent-div:hover {
    transform: scale(1.02);
    /* transform: translateY(-5%); */
    /* border:0 solid black; */
    background: rgb(0 0 0 / 35%);
}

.translucent-div-rgba {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 20px;  /* Padding for better visibility */
    margin: 20px 0; /* Margin for separation */
}

.fair-div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

a { 
    text-decoration:none; 
}

.white-link {
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

.center-div {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: row;
}

@keyframes changeLayout {
    0% {
        flex-direction: column;
    }
    20% {
        flex-direction: column;
    }
    50% {
        flex-direction: row;
    }
    100% {
        flex-direction: row;
    }
}

@keyframes flip {
    0% {
        transform: rotateX(180deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

@keyframes uncover {
    0% {
        backdrop-filter: blur(50px);
        filter: blur(50px);
    }
    100% {
        backdrop-filter: blur(0px);
        filter: blur(10px);
    }
}