body {
    background-color: #ccc;
}

.section {
    width: 100%;
    padding: 20px 150px;
}

.sec1 {
    height: 60vh;
    display: flex;
    align-items: center;
    background-position: center center;
    font-size: x-large;
    position: relative;
}

.sec1 video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(2px) brightness(0.25);
}

.sec1 .content {
    width: 100vw;
    height: auto;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.section:nth-child(even) {
    background-color: #0d121c;
}

.section:nth-child(odd) {
    background-color: #1a2133;
}

.section.sec2 {
    display: flex;
}

.section.sec2 .content {
    width: 80%;
    display: flex;
}

.section.sec2 .contentimg {
    max-width: 200px;
    max-height: 200px;
    min-width: 200px;
    min-height: 200px;
    margin-left: 40px;
    border-radius: 10px;
    box-shadow: 6px 6px 9px #0d121c;
    filter: contrast(125%) brightness(89%);
    background: url(../images/Vijay.png), linear-gradient(359deg, #0d121c60, #1a213336);
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
}

.section.sec2 .contentimg.mobile{
    display: none;
}

.section.sec2 .content h2 {
    font-size: 34px;
}

.section.sec2 .content p {
    font-size: 17px;
}


.author {
    text-align: right;
    font-weight: 900;
}

@media screen and (max-width: 1000px) {
    .section{
        padding: 30px;
    }
    
    .sec1 {
        height: 40vh;
        padding: 10px;
    }

    .sec1 .content h1 {
        font-size: 40px;
    }

    .sec1 .content p {
        display: none;
    }

    .section.sec2 .content{
        width: 100%;
        display: block;
    }

    .section.sec2 .contentimg{
        display: none;
    }
    .section.sec2 .contentimg.mobile{
        display: block;
        margin:auto;
        margin-bottom: 20px;
    }

    .section.sec2 .content p{
        text-align: justify;
    }
}