/* media queries */
@media screen and (min-width: 0px) and (max-width: 576px) {
    .bigimg {
        width: 200px;
    }

    .medimg {
        width: 125px;
    }

    .xsm-view {
        display: block;
    }

    .normal-view {
        display: none;
    }
}

@media screen and (min-width: 577px) and (max-width: 767px) {
    .bigimg {
        width: 350px;
    }

    .medimg {
        width: 250px;
    }

    .xsm-view {
        display: block;
    }

    .normal-view {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .bigimg {
        width: 400px;
    }

    .medimg {
        width: 250px;
    }

    .xsm-view {
        display: block;
    }

    .normal-view {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .bigimg {
        width: 600px;
    }

    .medimg {
        width: 400px;
    }

    .xsm-view {
        display: none;
    }

    .normal-view {
        display: block;
    }
}

body {
    color: #14110F;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: medium;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
    background-color: #006400;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 100, 0, 1), rgba(0, 0, 0, 0)) */
}

/* color specific */
.medback {
    background-color: #006400;
}

.lightback {
    background-color: #AFC6D5;
}

.whiteback {
    background-color: #ffffff;
}

/* font related */
.logofont {
    font-family: 'Rubik Dirt', cursive;
}

.secondfont {
    font-family: 'Annie Use Your Telescope', cursive;
}

.secondfont>a:visited {
    color: inherit;
}

.darkfont {
    color: #14110F;
}

.medfont {
    color: #006400;
}

.lightfont {
    color: #AFC6D5;
}

.bigger {
    font-size: 1.5rem;
}

*>a:visited {
    color: inherit;
}

/* navbar stuff */

.nav-item>a {
    font-size: 1em;
}

.active {
    font-family: 'Annie Use Your Telescope', cursive;
    color: #006400;
    font-weight: 600;
}

.nav-item>a:hover {
    font-family: 'Annie Use Your Telescope', cursive;
    font-weight: 700;
    font-size: 1.2em;
}


/* footer specific styling */
footer>div>div>ul {
    list-style-type: none;
}

footer>div>div>ul>li {
    display: inline;
    padding: 0 0.5rem;
}

footer>div>div>ul>li:not(:last-child) {
    border-right: 1px solid #14110F;
}