.diff {
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hide {
    color: transparent;
}

#hide::selection {
    display: none;
    background-color: white;
}

.diff-cont {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.diff2 ul,
.diff3 ul {
    text-align: left;
}

.diff2 ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.diff2 ul li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 3px;
    background-color: black;
    left: -30px;
}

.diff2 h3,
.diff3 h3 {
    position: relative;
}

.diff2 h3::before,
.diff3 h3::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: black;
    bottom: 0;
    margin-top: .5rem;
}


/* .diff1,
.diff2 {
    border-right: 1px solid black;
} */

.diff1,
.diff2,
.diff3 {
    padding: 1rem;
}

.diff1 li {
    font-weight: bold;
}

.diff h3 {
    font-size: 35px;
    padding: .5rem 0;
    margin-bottom: 1rem;
}

.diff .diff1 ul {
    padding-right: 1rem;
}

.diff ul {
    list-style: none;
}

.diff ul li {
    margin-bottom: 2rem;
}

.diff::before {
    content: "";
    position: fixed;
    width: 900px;
    height: 150vh;
    left: -350px;
    top: 14vh;
    z-index: -99999;
    background-color: rgba(0, 0, 0, 0.03);
    transform: rotate(-45deg);
}

@media (max-width:900px) {
    .diff::before {
        content: "";
        position: fixed;
        width: 900px;
        height: 150vh;
        left: -150vw;
        top: 150vh;
        z-index: -99999;
        background-color: rgba(0, 0, 0, 0.03);
        transform: rotate(-45deg);
    }
    .diff2 {
        margin-bottom: 3rem;
    }
    header::before {
        content: "";
        position: fixed;
        width: 900px;
        height: 150vh;
        right: -150vw;
        top: -100px;
        z-index: -99999;
        background-color: rgba(0, 0, 0, 0.03);
        transform: rotate(-45deg);
    }
    .diff-cont {
        display: block;
    }
    .diff {
        padding: .5rem;
        height: fit-content;
    }
    .diff1 {
        display: none;
    }
    .diff3,
    .diff2 {
        padding: 0 2rem;
    }
    .diff3 ul li {
        position: relative;
        display: flex;
        align-items: center;
    }
    .diff3 ul li::before {
        content: "";
        position: absolute;
        width: 10px;
        height: 3px;
        background-color: black;
        left: -30px;
    }
    .diff h3 {
        font-size: 30px;
    }
}