html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    height: 100%;
}

body {
    animation: change-color 30s infinite alternate;
    font-family: "Bitcount Prop Double Ink", system-ui;
    text-align: center;
    margin: 0;
}

@keyframes change-color {
    0% {
        background-color: #FAA0A0;
    }

    50% {
        background-color: #ACD1AF;
    }

    100% {
        background-color: #AEC6CF;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: turquoise;
    /* Green background */
    color: #fff;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

/* Navigation links styling */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s, text-decoration 0.3s, background-color 0.3s;
    padding: 5px 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e0e0e0;
    /* Lighter color for active/hover */
    background-color: yellowgreen;
    /* Darker green background on hover */
    border-radius: 4px;
    /* Optional: rounded corners */
}

/* Menu toggle button for mobile view */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 5px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: turquoise;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
}


.h1 {
    font-family: "Bitcount Prop Double Ink", system-ui;
    text-align: center;
}

.h3 {
    font-family: "Bitcount Prop Double Ink", system-ui;
}

ul, li {
    font-family: "Bitcount Prop Double Ink", system-ui;
    text-align: left;
}