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

body {
    background-color: #f9f9f9;
    padding-bottom: 48px;
}

.indent {
    text-indent: 24px;
}

.navbar {
    background-color: green !important;
}

.navbar-toggler  {
    border-color: #fff !important;
    color: #fff !important;
}

.navbar a {
    color: #ffffff !important;
}

.navbar ul a {
    position: relative;
}

.navbar ul a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e4e4e4;

    transition: 0.2s ease-in-out;
}

.navbar ul a:hover::after{
    width: 100%;
}

.navbar ul a.active {
    font-weight: 600;
    color: #fff;
}

#pages {
    margin: 12px 0;
}

#pages ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;

    border-top: 1px solid #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
}

#pages ul li {
    margin: 0 12px;
}

#pages ul li a {
    color: #a1a1a1;
}

#pages ul li a:hover {
    color: #141414;
}

#pages ul li a.active {
    color: green !important;
    font-weight: 600 !important;

}

/* index.html */
#explore .container .explore-container {
    background-color: #fff;
    padding: 24px 32px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

#explore ol li:not(:last-child) {
    margin-bottom: 16px;
}

/* other pages */
#landing {
    min-height: 75vh !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;

    display: flex !important;
    align-items: center !important;
}

#others .box-container {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    height: 100%;
    text-align: justify;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

#others .box-container p {
    text-indent: 24px;
}