body {
    overflow-x: hidden;
}

main {
    position: relative;
    height: max-content;
    overflow: hidden;
    width: 100vw;
    height: 80vh;

    background-image: url("img/banner_img.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hook_wrapper {
    width: min(90vw, 400px);
    min-height: 100px;
    background-color: var(--dark-color);
    border-radius: 20px;
    opacity: 0.8;
}
.hook_wrapper h2 {
    text-align: center;
    color: var(--light-color);
    margin: 10px;
}

main::after{
    content: "";
    position: absolute;
    bottom: -100px;
    left: -10%;
    width: 120%;
    height: 100px;
    box-shadow: 0px -50px 30px var(--primary-color);
    z-index: 2;
}

.sec_1 {
    height: 300px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec_1_wrapper {
    display: flex;
    flex-direction: row;
    margin: 10px;
}

.gym_icon {
    color: var(--light-color);
    font-size: 2em;
    margin: 0px 5px 0px 5px;
}

.sec_1 p{
    font-size: 1.4em;
    color: var(--light-color);
    margin: 0px 5px 0px 5px;
}

.divider {
  display: block;
  width: 100%;
  height: 100px;
  fill: var(--secondary-color);
}

.sec_2 {
    height: 300px;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec_2_wrapper {
    display: flex;
    flex-direction: row;
    margin: 10px;
}

.skill_icon {
    font-size: 2em;
    margin: 0px 5px 0px 5px;
}

.sec_2 p{
    font-size: 1.4em;
    margin: 0px 5px 0px 5px;
}

@media (max-width: 600px){
}