*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #e7ffdb;
    width: 100vw;
    max-height: 100vh;
    overflow-x: hidden;
}
.main{
    margin-block: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.allImg{
    margin-top: 30px;
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.singleImg{
    border-radius: 10px;
    padding: 20px;
    background-color: #edecec;
    border: 1px solid #414141;
}

.firstDiv{
    display: flex;
    align-items: center;
    gap:10px;
}

.userImg{
    width: 60px;
    border-radius: 50%;
}
.userName{
    font-size: 2em;
}

.secondDiv{
    margin-top: 20px;
}

.mainImg{
    border-radius: 10px;
    width: 400px;
    height: 300px;
    object-fit: cover;
}
.imgDes{
    margin-top: 10px;
    font-size: 2.2em;
}

.hidden{
    display: none;
}
.visible{
    margin-top: 20px;
    font-size: 1.5em;
    padding-block: 19px;
    padding-inline: 40px;
    background-color: lightgreen;
    border-radius: 20px;
    border: none;
    box-shadow: 1px 1px 2px green;
    cursor: pointer;
    display: block;
}