main {
    background-color: var(--secondary-color);
}

h1 {
    margin-bottom: 0.6em;
}

h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}

#main-banner {
    display: flex;
    position: relative;
    width: auto;
    height: 83vh;
    overflow-x: hidden;
    margin-bottom: 5em;
}

#main-banner img {
    position: absolute;
    opacity: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    justify-content: center;
}

#info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
}

#info>div {
    width: 45%;
    height: fit-content;
}

#info div ul {
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    width: 100%;
    list-style: none;
}

#info li {
    width: 20%;
    margin: 0;
    padding: 0;
}


@media (max-width: 768px) {

    #main-banner {
        height: 550px;
    }

    #info {
        flex-direction: column;
    }


    #info>div {
        width: 100%;
        text-align: center;
    }

    .button {
        display: flex;
        justify-content: center;
    }
}