
main {
    margin: 5vw;
}

.top {
    height: 100vh;
}

.top h1 {
    color: black;
    text-align: center;
    background: #1c3b70;
    padding: 10px;
    color: #fff;

}

.top p {
    line-height: 2;
}

.bg {
    display: grid;
    place-items: center;
}

.bg img {
    height: 80vh;
    margin: auto;
}

.content p {
    line-height: 1.5;
    font-size: 16px;
}

.glimpses {
    margin-top: 20px;
}

.glimpses h2 {
    margin: 100px 1px 30px 0px;

}

.grid-image {
    border-radius: 10px;
    transition: 0.2s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grid-image:hover {
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}
.grid {
    display: grid;
    gap: 10px;
    margin: 10px;
    grid-template-areas:
        "I1 II I2"
        "I3 I4 I4"
        "I5 -- --" ;
}

.item1 {
    grid-area: I1;
}

.item2 {
    grid-area: I2;
}

.item3 {
    grid-area: I3;
}

.item4 {
    grid-area: I4;
}

.item5 {
    grid-area: I5;
    
}

.video{
    margin: 100px 1px 30px 0px;
   
    
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
   
    overflow: hidden;
    max-width: 70%; 
    margin: 0 auto; 
    top: 20px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}
@media(max-width:820px){
    .top {
        height: 50vh;
    }
    .bg {
        display: flex;
        justify-content: center;        
    }
    .bg img{
        height: 40vh;
    }
    
    .content p {
        line-height: 1.4;
        font-size: 14px;
    }
    .glimpses h2 {
        font-size: 20px;
    }
    .grid {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
     .video-container{
        max-width: 100vw;
        margin: 0;
        top:0;
     }
   
         
}
