*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(20, 21, 19);
    font-family: 'Montserrat', sans-serif;
    color: rgb(248, 250, 187);
    height: 100vh;
    overflow: hidden;
}

header{
    background-color: rgba(10, 11, 10, 0.63);
    width: 100%;
    height: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    transition: 1s;
}

header p{
    opacity: 70%;
    padding-top: 20px;
    transition: 1s;
}

/* 🔴 MAIN FIX */
.container{
    width: 1200px;
    height: 550px;
    border: 2px solid rgba(248, 250, 187, 0.368);
    margin: auto;
    margin-top: 60px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 20px;
    border-top-left-radius: 40px;
    transition: 1s;
    display: flex;
    background-color: rgba(10, 11, 10, 0.63);
}

/* 🔴 FIX SIDE LINES */
.leftSide{
    height: 726.3px;
    width: 50px;
    background-color: rgba(10, 11, 10, 0.63);
    position: fixed;
    right: 0;
    top: 60px;
    border-left: 2px solid rgba(248, 250, 187, 0.266);
    transition: 1s;
}

.rightSide{
    height: 726.3px;
    width: 50px;
    background-color: rgba(10, 11, 10, 0.63);
    position: fixed;
    left: 0;
    top: 60px;
    border-right: 2px solid rgba(248, 250, 187, 0.266);
    transition: 1s;
}

/* header line */
.line{
    height: 60px;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid rgba(248, 250, 187, 0.266);
    margin: 0 auto;
    transition: 1s;
}

/* left block */
.leftCont{
    height: 546px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 20px;
    width: 600px;
    text-align: center;
    display: flex;
    align-items: center;
    color: rgba(248, 250, 187, 0.266);
    transition: 1s;
    flex-direction: column;
}

/* right block */
.rightCont{
    height: 546px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 20px;
    width: 600px;
    transition: 1s;
    display: flex;
    flex-direction: column;
}

/* text */
#p2{
    font-size: 24px;
    transition: 1s;
}

span{
    font-size: 40px;
    color: rgba(255, 255, 255, 0.347);
    transition: 1s;
}

#img1{
    height: 60px;
}

#img2{
    height: 120px;
    width: 120px;
    margin-top: 105px;
}

/* cards */
.first, .second, .third{
    width: 550px;
    height: 100px;
    border: 2px solid rgba(248, 250, 187, 0.266);
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 20px;
    border-top-left-radius: 40px;
    transition: 1s;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.first h6, .second h6, .third h6{
    font-size: 17px;
    color: rgba(248, 250, 187, 0.266);
    transition: 1s;
}

.first p, .second p, .third p{
    font-size: 15px;
    color: rgba(255, 255, 255, 0.347);
    transition: 1s;
}

/* ================== ADAPTIVE ================== */

@media (max-width: 1400px) {

    .leftSide,
    .rightSide {
        display: none;
    }

    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {

    body{
        overflow-y: auto;
    }

    .container {
        flex-direction: column;
        height: auto;
        width: 90%;
    }

    .leftCont,
    .rightCont {
        width: 100%;
        height: auto;
    }

    .rightCont {
        align-items: center;
    }

    .first,
    .second,
    .third {
        width: 100%;
        height: auto;
        padding: 20px;
        margin-top: 30px;
    }

    #p2 {
        font-size: 20px;
    }

    span {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    #img1 {
        height: 40px;
    }

    #img2 {
        height: 90px;
        width: 90px;
        margin-top: 40px;
    }

    #p2 {
        font-size: 18px;
    }

    span {
        font-size: 26px;
    }

    .first h6,
    .second h6,
    .third h6 {
        font-size: 15px;
    }

    .first p,
    .second p,
    .third p {
        font-size: 14px;
    }
}
