main{
    margin-top: 100px;
    margin-bottom: 100px;
}
.imgs{
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}
.imgs img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.content{
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
}
.content h2{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 40px;
}
.content h5{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
}
.content p{
    color: grey;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height:2;
    font-size: 16px;
}

@media screen and (max-width:1400px) {
    main{
        margin: 70px 0;
    }
    .imgs{
        height: fit-content;
    }
    .imgs img{
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        transform: translate(0,0);
    }
}