:root {
    /* Fonts */
    --main-font: 'Montserrat';
    /* Color */
    --navbg: 25, 25, 63;
    --primary: #19193F;
    --secondary: #F3904B;
    --lgray: #D9D9D9;
    --dgray: #979797;
}
* {
    scroll-behavior: smooth;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    font-family: var(--main-font);
    color: white;
    background: url("../assets/images/bg.jpg") repeat;
    background-size: 100%, 100%;
    background-position: center, center;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
p {font-size: 25px;}
h2 {
    font-size: 40px;
    margin: 0;
}
h1 {
    font-size: 80px;
    margin: 0;
}

.left {
    display: inherit;
}
.navbar {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(var(--navbg), 0.5);
    z-index: 10;
    backdrop-filter: blur(5px);
    img {
        height: auto;
        width: 166px;
        margin-left: 5.5rem;
        z-index: auto;
    }
}
.nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 8rem;
    background-color: var(--secondary);
    flex-direction: column;
    align-items: center;
    z-index: 50;
    padding: 0;
    margin: 0;
    outline: none;
    li {
        list-style: none;
        a {
            text-decoration: none;
            color: white;
            font-size: 1.25rem;
        }
        :hover {
            color: var(--primary);
        }
    }
}

  .nav-links.show {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    padding: 5rem 2rem 2rem;
    z-index: auto;
  }

  .navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 3rem;
    height: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 15;
    margin-right: 2rem;
    }
    
    .navbar-toggler .navbar-icon {
    width: 100%;
    height: 0.15rem;
    right: 0px;
    background-color: white;
    transition: all 0.3s ease;
    position: relative;
    }
    
    .navbar-toggler .navbar-icon::before,
    .navbar-toggler .navbar-icon::after {
    right: 0px;
    content: '';
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: white;
    transition: all 0.3s ease;
    }
    .navbar-toggler .navbar-icon::before {
    top: -0.60rem;
    }
    .navbar-toggler .navbar-icon::after {
    top: 0.60rem;
    }

    /* Active state for hamburger icon */
    .navbar-toggler.active {
        z-index: 0;
    }

@media (max-width: 855px) {
    .left {
        display: none;
    }
    .navbar { img {margin-left: 2rem;} }
}

@media (max-width: 546px) {
    .navbar { 
        height: 60px;
        img { width: 120px; } 
    }
}