.hero{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.hero > .heroText{
    font-weight: 900;
    font-size: 6em;
    color: var(--accent-color);
    margin-bottom: 40px;
    display: flex;
}
#heroSection{
    height: calc(100vh - 100px);
}
.textLine{
    height:100%;
    aspect-ratio: 0.14;
    background-color: var(--accent-color);
    margin-left: 15px
}
.tagLine{
    color: var(--teritiary-color);
    font-size: large;
    height: 50px;
    margin-bottom: 50px;
}

.hero > .buttons{
    display: flex;
    width: 400px;
    justify-content: space-around;
    align-items: center;
}
.hero > .buttons > .btn{
    min-width: 150px;
    text-align: center;
}