.btn-nav {
    height: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    opacity: 0.7;
    background-color: rgb(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


/* Left title */
.nav-left {
    display: flex;
    align-items: center;
    padding-left: 20px;
}



/* Right buttons */
.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

/* Buttons */
nav .btn, nav .button-outline {
    padding: 10px 10px;
    font-size: 1.5rem;
    background-color: #000000;
    color: #fafafa;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Questrial', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

nav .btn:hover,
nav .button-outline:hover {
    background-color: #fafafa;
    color: #000000;
}

/* Logo image */
.logo {
    height: 80px;
    width: auto;

}

