.main-banner {
    background:
        linear-gradient(to top, #173f76, #173f7600),
        url("../assets/imgs/bannerImg.png");
    background-position: center;
    background-size: 100% 100%, 100% auto;
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    min-height: 75%;
    justify-content: center;
}

.main-banner h1 {
    margin: 0;
    font-family: "Sniglet";
    font-weight: 600;
    font-size: 7rem;
    margin: 0 12px;
    color: #ffffff;
    -webkit-text-stroke-width: 7px;
    -webkit-text-stroke-color: #173f76;
}

.main-banner h2 {
    margin: 0;
    font-family: "Sniglet";
    font-weight: 600;
    font-size: 4rem;
    margin: 0 12px;
    color: #ffffff;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: #173f76;
}

.banner-button-cont {
    display: flex;
    width: 40%;
    justify-content: center;
    text-decoration: none;
}

.banner-button-cont button{
    border: none;
    background-color: #173f76;
    color: #ffffff;
    font-family: "Fredoka";
    font-weight: 800;
    font-size: 2rem;
    padding: 20px 30px;
    border-radius: 10px;
    cursor: pointer;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
    background-attachment: fixed;
    background-color: #f9f4ed;
    align-items: center;
}

.body-wrapper img {
    height: 120px;
    width: auto;
}

.body-wrapper td {
    width: 26%;
    text-align: center;
    font-family: Fredoka;
    font-size: 1.6rem;
    font-weight: 800;
    color: #173f76;
}

.icon-combo {
    padding: 25px 0;
}

.txt-content {
    width: 70%;
}

.img-content {
    width: 30%;
}

.content-wrapper {
    width: 80%;
}

@media (max-width: 848px) {
    .txt-content {
        width: 100%;
    }

    .img-content {
        width: 80%;
    }

    .content-wrapper {
        width: 95%;
    }

    .main-banner {
        min-height: 45vh;
    }

    .main-banner h1 {
        font-size: 3.5rem;
        margin: 0 12px;
        -webkit-text-stroke-width: 3px;
    }

    .main-banner h2 {
        font-weight: 600;
        font-size: 2rem;
        -webkit-text-stroke-width: 2px;
    }
}