body {
    overflow-y: overlay;
    min-height: 100vh;
    background-color: rgb(24, 24, 27);
}

footer {
    background-color: rgb(24, 24, 27);
}

.jumbo-bg {
    position: relative;
}

@media (min-width: 768px) {
    .jumbo-bg {
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

.jumbo-bg img {
    object-fit: cover;
    /* width: 100vw;
    height: 100vh; */
}

@media (min-width: 768px) {
    .jumbo-bg img {
        object-fit: cover;
        width: 100vw;
        height: 100vh;
    }
}

.jumbo-text-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* display: none; */
}

.jumbo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .jumbo-text-sm {
        display: none;
    }

    .jumbo-text {
        display: block;
    }

    #about {
        margin-top: 100vh;
    }

    .arrow {
        display: block;
    }
}

ul {
    list-style: none;
}

.tech .fa-brands {
    font-size: 3rem;
}