@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap');

:root { 
    --bckgrnd: rgb(230, 240, 240);

    --viewport-height: 100vh;
    --viewport-width: 100vw;


    --standard-banner-height: 756px;
    --standard-banner-width: 1920px;
    --modified-banner-height: 70vh;
    --modified-banner-width: calc(var(--modified-banner-height) * 1920 / 756);
}

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body::-webkit-scrollbar {
    display: none;
}

body { 
    background-color: var(--bckgrnd);
    overflow-x: hidden;
    max-width: 100%;
}

/* --------------------------------------------------------------------- */
/* Content */
.text_box {
    position: relative;
    width: 70%;
    margin: auto;
    filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
}

.content_sec {
    width: 100%;
    /* background-color: #88b7b5; */
    background-color: #b5d1cfdb;
    padding: 1% 2%;
    border-radius: 20px;
}

.content_sec h2 { 
    font-size: 1.618em;
    font-weight: 600;
    padding-left: 1.5%;
}

.content_sec p { 
    font-size: 1em;
    font-weight: 400;
}

.content_sec img { 
    width: 96%;
    height: auto;
    border-radius: 20px;
    margin: 2% 2%;
}

.filler { 
    height: 7vh;
    width: 100%;
}
