@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: black;
    padding: 10px 200px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 100;
    height: 12%;
}

.nav-logo {
    height: 100%;
    margin-left: 20px;
}

.nav-links {
    display: flex;
    gap: 15px;
    margin-right: 300px;
}

.nav-link {
    color: rgb(255, 245, 54);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-link:hover{
    color: rgb(255, 253, 218);
}

.nav-link.active{
    color: rgb(179, 174, 105);
}

/* Footer */
.bottom-bar {
    position: relative;
    width: 100%;
    background-color: rgb(25, 25, 25);
    text-align: center;
    padding: 10px 0;
    color: rgb(255,245,54);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    z-index: 10;
    overscroll-behavior-y: contain;
}