#section-home .home-text-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

#section-home .home-text-wrapper h1 {
    margin: 0;
}

.span-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

.span-wrapper span {
    position: relative;
    width: 150px;
    height: 7px;
    border-radius: 20px;
    background-color: var(--bg-dark);
}

.span-wrapper span:last-child {
    margin-left: 140px;
}

.span-wrapper span {
    margin: 15px 0px;
}

#section-home .home-button-wrapper {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#section-home .home-button-wrapper button {
    width: 150px;
    border-radius: var(--button-radius);
    background-color: #000000;
    color: #fff;
    transition: 0.3s ease;

}

@media(hover: hover) and (pointer: fine) {
    #section-home .home-button-wrapper button:hover {
        transform: scale(1.1);
        background-color: var(--accent-color);
        color: #FFF;
    }
}

@media (max-width: 767px) {
    .span-wrapper {
        padding: 15px;
    }

    .span-wrapper span {
        width: 100px;
        height: 5px;
    }

    .span-wrapper span:last-child {
        margin-left: 40px;
    }

    .span-wrapper span {
        margin: 10px 0px;
    }

}