
@font-face {
    font-family: 'badger';
    src: url('assets/Badger.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: 'badger';
    line-height: 1.6;
    background-color: #f5f6fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes at least the full height of the viewport */
    background-image: url('assets/CanopyWaterfall.jpg'); /* Set background image */
    background-size: cover; /* Cover the entire viewport */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent background image from repeating */
    overflow: hidden;
}

header, nav, main, section, footer {
    text-align: center;
    max-width: 100%; /* Added to ensure elements fill the screen */
}

main, section, footer {
margin: auto; /* Added to center elements horizontally */
}

header {
    color: #333;
    font-variant: small-caps;
    font-size: calc(2vw + 1em); /* xx-large; */
    padding-bottom: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    color: #333;
}

nav ul li {
    display: inline;
    margin-right: 0.1vw;
}
nav ul p {
    text-decoration: none;
    display: inline;
    /* fill: #333; */
}

nav ul li a {
    text-decoration: none;
    /* fill: #333; */
}

nav ul li a {
    width: calc(0.5vw + 1em);
    height: calc(0.5vh + 1em);
    /* filter: invert(0%) sepia(10%) saturate(1576%) hue-rotate(-21deg) brightness(60%) contrast(60%); */
}

main {
    padding: 20px;
    height: 75vh;
}

footer {
    color: #eaeaea;
    text-align: center;
    padding: 1vh;
    font-size: 0.8vw;
    margin-bottom: 0;

}

a { 
    color: inherit; 
    text-decoration: none;
}

a:hover { 
    color: #50aeab;
}

@media only screen and (max-width: 600px) {
    body {
        background-image: url('assets/CanopyWaterfallMob.jpg'); /* Set background image */
    }
    footer {
        font-size: 1.5vw;
    }
    nav ul li a {
        width: calc(2.5vw + 1em);
        height: calc(2.5vh + 1em);
    }
}

@media only screen and (max-width: 380px) {
    nav ul li {
        display: grid;
        margin-left: 50vw;
    }
}

@media (min-width: 900px) and (max-width: 2000px) {
    nav ul li {
        display: grid;
        margin-left: 50vw;
    }
}

@media (min-width: 2000px) {
    nav ul  {
        padding-bottom: 5%;
    }
    footer {
        padding-top: 5%;
    }
} 
