.Logo {
    width: 40%;
    height: auto;
    animation: fadeIn 0.5s ease-in-out;
}

.Reviews{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;

}
.Reviews_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    height: auto;
    flex-wrap: wrap; 
}
.Reviews_content--item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 300px; 
    min-height: 350px;
    max-height: max-content; 
    margin: 0 1em 1em 0;
    padding: 1em;
    box-sizing: border-box;
    background-color: whitesmoke;
    border: solid whitesmoke;
    border-radius: 10px;
    color: black;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    
    
}

/* Media Queries for responsiveness */
@media screen and (max-width: 768px) {
    section {
        width: 100%;
    }
    section > h2 {
        font-size: 1.3em;
        width: 80%;

    }
    section > img{
        width: 80%;
        height: auto;
    }
    .Logo {
        width: 60%;
    }

    .Reviews_content {
        width: 80%;
        flex-direction: column;
    }

    .Reviews_content--item {
        width: 100%;
        margin: 1em 0;
        height: 20vh;
    }
    .about{
        width: 80%;
    }
   


}

@media screen and (max-width: 480px) {
    .Logo {
        width: 80%;
    }

    .Reviews_content {
        width: 90%;
    }

    .Reviews_content--item {
        width: 100%;
        margin: 1em 0;
    }

}




@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}