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

}
.container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px;
    grid-gap: 20px;
    padding: 100px 0;
    

}


.box img{

   
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.box:nth-child(1){
    grid-column-start:span 2 ;
}

.box:nth-child(4){
    grid-column-start:span 2 ;
}


@media(max-width:991px){

    .container{
        padding: 30px;
        grid-template-columns: repeat(1, 1fr);

    }
    

    .box:nth-child(1){
        grid-column-start: span 1;
    }
    

    .box:nth-child(4){
        grid-column-start: span 1;
    }



    .box:nth-child(4){
        grid-column-start: span 1;
    }
}


body{


    font-family: sans-serif;
    margin: 0;
}



header{
    display: flex;
    height: 95px;
    background-color: rgb(156, 230, 156);
    justify-content: space-between;
    align-items: center;
}


.logo{
    display: flex;
    align-items: center;
}

.logo img{

    height: 100px;
    margin-right: 10px;

}

.nav-link{
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: rgb(96, 147, 240);
    display: flex;
    width: 100px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin: 150px 130px;
    padding: 15px 30px;
    background-color: white;
    border-radius: 50px;
    
}


p{

    color: rgba(57, 157, 239, 0.9);
    font-size: 150px;
    text-align:center;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}