.Hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    scroll-snap-align: start;
}

.Hero h3 {
    font-size: 50px;
    font-weight: bolder;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 1rem;
}

.right h3 {
    text-align: right;
}

.Hero h3::after {
    content: "";
    position: absolute;
    bottom: 5px;
    margin-bottom: .5rem;
    width: 70px;
    height: 3px;
    background-color: black;
}

.right h3::after {
    right: 0;
}

.right p {
    text-align: right;
}

.left,
.right {
    margin: 2rem;
    display: flex;
    align-items: center;
}

.left div,
.right div {
    margin: 2rem;
}

.line {
    height: 30vh;
    width: 7px;
    background-color: rgb(65, 65, 65);
    border-radius: 50px;
}

@media (max-width:900px) {
    .Hero {
        margin-bottom: 0rem;
        height: fit-content;
    }
}

@media (max-width:700px) {
    .Hero {
        flex-direction: column;
        height: fit-content;
    }
    .line {
        width: 10px;
        margin: .5rem;
    }
    .left div,
    .right div {
        margin: 1rem;
    }
    .left p,
    .right p {
        font-size: 15px;
    }
    .left h3,
    .right h3 {
        font-size: 30px;
    }
}