/* ----------------- 540px < ----------------- */
@media (min-width: 540px) {
    .scroll-bg {
        height: 100%;
        width: 100%;
        background-image: url("img/project.png");
        position: absolute;
    }
    
    .black-bg {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        position: absolute;
    }

    main {
        width: 72%;
    }
}

/* ----------------- < 1500px ----------------- */
@media (max-width: 1500px) {
    /* #logo-description-section {
    } */
    .border {
        border-bottom: 3px solid #000;
    }
}

/* ----------------- 1500px < ----------------- */
@media (min-width: 1500px) {
    #logo-description-section {
        display: flex;
    }

    .border {
        border-right: 3px solid #000;
    }
}

