html {
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    background-color: #172c65;
}

body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    font-size: 16px;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: white;
    text-shadow: 0.06em 0.06em 3px #172c65;
    margin: 0;
}

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: white;
    text-shadow: 0.06em 0.06em 3px #172c65;
    margin: 0;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: white;
    text-shadow: 3px 3px #141414;
    margin: 0;
    font-size: 3rem;
}

nav {
    display: inline;
    position: absolute;
    right: 0;
    top: 0;
}

nav a {
    text-decoration: none;
    color: #ffffff
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0.5em 1em;
    display: inherit;
}

li {
    display: inline-block;
    font-size: 2em;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0 1em;
}

.row {
    display: flex;
}

.row.full {
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.icon-txt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.icon-txt.this-page {
    background-color: #1163ba;
}

.icon-txt img {
    height: 1em; 
}

.icon-txt h1 {
  font-size: 1.15em;
}

.icon-txt.logo {
    display: inline;
    font-size: 2em;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: white;
}

.hero-content h2 {
  font-size: 0.4em;
  margin: 0;
}

.hero-content {
    font-size: clamp(2.5rem, -0.1323rem + 8.5603vw, 8rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}

.hero-content-wrapper {
    background:
        url("../assets/bg_elements/bg_sparklez.png"),
        #001e36;
    background-position: center;
    background-size: cover;
    margin: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin: 0.3em 0 0 0;
}


.nav-bar {
    padding: 0.5em 1em;
    position: relative;
    display: flex;
}

.hero-content button {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.5rem; /* yayyy naextend research! di pa ako magpapakamatay :333*/
    color: white;
    background-color: #172c65;
    border: none;
    border-radius: 50px;
    padding: 0.5em 1.5em;
    margin: 1em 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.svt button {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    background-color: #242e5b;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 2rem;
    margin: 1em 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 1em auto;
}

.hero-content button:hover {
    background-color: #0066d6;
    transform: translateY(-3px);
}

.highlighted {
    background-color: #172c65;
}

.unhighlighted {
    background-color: #001e36;
}

.content-box {
    margin: 0 10vw;
    display: flex;
    flex-direction: column;
}

.content-box.full {
    margin: 0 2vw;
}

.content-box.cent {
    justify-content: center;
    align-items: center;
}

.content-box .col{
    width: 100%;
    flex-direction: row;
    display: flex;
}

.content-box p {
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 0 black;
    line-height: 1.5em;
}

.svt p {
    margin: 0;
}

.content-box ul {
    flex: 1;
    list-style: disk;
}

.content-box li {
    font-family: "Roboto", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 0 black;
    line-height: 1.2em;

    display: list-item;
    list-style-type: disc;
}

.content-box b {
    font-weight: 900;
}

.content-box h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: white;
    text-shadow: 3px 3px 0 black;
}

.content-box h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: white;
    text-shadow: 3px 3px 0 black;
    margin: 0; 
}

.content-box img {
    width: 90%;
    height: auto;
    border-radius: 20px;
    align-self: center;
    justify-self: unset;
    margin: 1em;
}

.content-box img.vert {
    height: 80vh;
    width: auto;
}

.content-box img.sqr {
    height: 60%;
    width: auto;
}

.content-box .col.stl{
    flex: 1;
    flex-direction: column;
}

.content-box .col.svt{
    width: 70%;
    flex-direction: column;
}

.content-box .col.vst{
    width: 30%;
    flex-direction: column;
}