body{

    margin:0;
    font-family:Arial;
    
    background-image:url("background.jpg");
    background-size:cover;
    background-position:center;

}

.container{
    padding:40px;
}

.title{
    font-size:60px;
    margin-bottom:20px;
}

.gallery{

    
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.item{

    aspect-ratio:1/1;
    cursor:pointer;
    overflow:hidden;
    

}

.item img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.info{

    max-height:0;
    overflow:hidden;

    transition:max-height 0.6s ease;

    margin-top:30px;

}

.close-info{

   max-height:0;
overflow:hidden;

transition:max-height 0.6s ease;

margin-top:30px;

}

.info.active{

max-height:600px;

}

.info-header{

    display:flex;
    gap:20px;
    margin-bottom:20px;

}

.info-image{

    width:120px;
    height:120px;
    border-radius:50%;
    background:black;
}

.info-title{

    border:2px solid black;
    padding:10px;
    flex:1;

}

.info-text{

    border:2px solid black;
    padding:20px;
    min-height:300px;

}