main {
    font-size: 16px;
}

.nav-bar {
    background-color: #242e5b;
}

.hero-banner {
    background:#5e91ff99 url("../assets/bg_elements/class-pic.png") top / cover no-repeat;
    background-blend-mode: multiply;
    padding: 4em 5em 3em 5em;
}

.hero-banner h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 7em;
    color: white;
    text-shadow: 3px 3px 0px #000000;
    margin: 0;
}

.hero-banner p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.5em;
    color: white;
    text-shadow: 2px 2px 0px #000000;
    margin: 0;
    display: block;
    width: 60%;
    line-height: 1.6em;
}

.tagl-cont {
    font-size: inherit;
    padding: 3em 6em 15em 6em;
}

.tagline {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 4em;
    color: white;
    text-shadow: 3px 3px 0px #000000;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.vst {
    display: flex;
    justify-content: center;
}

.col {
    margin-bottom: 3em;
}

.col.cent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.members-hd {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: white;
    text-shadow: 3px 3px 0 black;

}

.cent-bx {
    font: inherit;
    padding: 1em 2em;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.row.frame-wrpr {
    width: 90%;
    justify-content: center;
    gap: 1rem
}

.item-frame {
    background-color: white;
    border-radius: 15px;
    flex: 1;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    aspect-ratio: 3/4;

    transition: transform 0.3s ease-out;
}

.item-frame .img-wr {
    height: 80%;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem;
}

.item-frame .img-wr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-frame span {
    align-self: center;
    font-size: 2rem;
    font-family: "Comic Sans MS", sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 0 1rem;
}

.item-frame:hover {
    transform: translateY(-10px);
}