.main_heading {
    font-size: 3rem;
    text-align: center;
}

.sub_heading {
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

.hackocardproblem{
    width: 81%;
    height: auto;
    padding-bottom: 25px;
}

.problemStatementContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.statementContainer {
    grid-area: 1 / 1 / 7 / 2;
    border: 1px solid black;
}

.div2 {
    grid-area: 1 / 2 / 6 / 4;
}

.div3 {
    grid-area: 5 / 2 / 7 / 4;
}

.statement {
    padding: 20px;
    border: 1px solid black;
}

.statement:hover{
    background-color: #cd8983 !important;
}
.showContainer {
    display: none;
    color: #000;
    border: 1px solid black;
    margin: 3rem 2rem 3rem 2rem;
}

.active {
    display: block;
}

.problems-mobile{
    display: none;
}


@media only screen and (max-width:1025px) {
    .hackocardproblem{
        padding-bottom: 0px;
    }
}

@media only screen and (max-width:769px) {
    .sub_heading{
        font-size: 1rem;
    }
}

@media only screen and (max-width:500px){
    .problems-mobile{
        display: block;
    }
    .problems-laptop{
        display: none;
    }
}