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

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

body::-webkit-scrollbar {
    display: none;
    max-width: 100%;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------- */
/* 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: #b5d1cfdb;
    padding: 1% 2%;
    border-radius: 20px;
}

.content_sec h2 { 
    font-size: 2.5em;
    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%;
}

.content_sec ul { 
    columns: 3;
}

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

.li a:hover {
    text-decoration: underline;
}