/* Navigation */
nav {
    background: #000033;
    color: #fff;
    display: flex;
    justify-content: space-between;
    height: 48px;
    box-shadow: 0px 1px 2px -2px rgba(24, 39, 75, 0.12), 0px 2px 2px -2px rgba(24, 39, 75, 0.08);
}

nav .mainMenu {
    display: flex;
    list-style: none;
}

nav .mainMenu li a {
    display: inline-block;
    padding: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-family: Arial;
}

nav .mainMenu li a:hover {
    background: #223388
}

nav .openMenu {
    font-size: 1rem;
    margin: 14px;
    display: none;
    cursor: pointer;
}

nav .mainMenu .closeMenu,
.icons i {
    font-size: 1rem;
    display: none;
    cursor: pointer;
}

nav .logo {
    margin-left: 25px;
    margin-top: 7px;
    font-size: 12px;
    cursor: pointer;
    mix-blend-mode: difference;
}

@media (max-width: 800px) {
    nav .mainMenu {
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #000;
        transition: top 1s ease;
        display: none;
    }
    nav .mainMenu .closeMenu {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    nav .openMenu {
        display: block;
    }
    nav .mainMenu li a:hover {
        background: none;
        color: rgb(255, 123, 0);
        font-size: 1rem;
    }
    .icons i {
        display: inline-block;
        padding: 12px;
    }
}

/* Account Dropdown Nav */
.account-logo {
    background-color: #9FB2F5;
    color: #e7ecfc;
    margin-top: 4px;
    margin-left: 1.5em;
    margin-right: 5em;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: relative;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


/* Social Icon Hover Colors */
.fa-facebook:hover {
    color: rgb(0, 110, 255);
}

.fa-twitter:hover {
    color: rgb(86, 154, 243);
}

.fa-instagram:hover {
    color: rgb(255, 0, 191);
}

.fa-github:hover {
    color: rgb(255, 123, 0);
}

.fa-linkedin:hover {
    color: #0077b5;
}

.register-btn {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    gap: 8px;
    width: 138px;
    height: 32px;
    background: red;
    border-radius: 4px;
    margin-top: 8px;
    margin-right: 1rem;
}

.register-btn:hover {
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    gap: 8px;
    height: 32px;
    background-color: pink;
    border-radius: 4px;
    margin-top: 8px;
    margin-right: 1rem;
}

.login-btn {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    gap: 8px;
    width: 138px;
    height: 32px;
    background: #2648BF;
    border-radius: 4px;
    margin-top: 8px;
    margin-right: 1rem;
}
