* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

:root {
    /* AppZomi Color Palette */
    --appzomi-navyblue: #1A263E;
    --appzomi-red: #FF4D4D;
    --appzomi-lightblue: #4BB2F2;
    --appzomi-slightblue: #4E78C9;
    --appzomi-lightgray: #DBDADA;
    --appzomi-white: #FFFFFF;

    /* Color Variables */
    --primary-color: #ffffff; /* background of the header */
    --text-color: #333; /* text on the page */
    --text-hover-color: #ff5252; /* hover/active text color */
    --background-color: #f5f5f5; /* background of the page */

    /* Other Variables */
    --max-width: 1200px;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    color: var(--text-color);
    background: var(--background-color);
    font-family: sans-serif;
    margin: 0px auto;
    padding: 100px 0;
}

/* Style for the header element */
header {
    background-color: var(--primary-color);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Style for the logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

/* Style for the nav links */
.nav-bar {
    display: flex;
    align-items: center;
}

.nav-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-right li {
    margin: 0 20px;
}

.nav-right a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: #ff5722;
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
}

footer {
    background-color: var(--primary-color);
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

footer a {
    font-weight: bold;
}

/* Mobile Style */
@media only screen and (max-width: 600px) {
    body {
        padding: 120px 0 100px 0;
    }

    header {
        height: 100px;
        padding: 0;
    }

    nav {
        flex-direction: column;
        justify-content: space-between;
    }

    .nav-bar {
        padding: 10px;
    }
    
    .nav-right li {
        margin: 0 10px;
    }
}