.nav-bar {
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 10px 8rem 10px 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
}

.home-link {
    margin-left: 10vw;
    text-decoration: none;
}

.link-button, .link-button:hover {
    margin: 0 20px !important;
    text-decoration: none;
    width: 100px;
    display: inline-block;
    text-align: center;
}

.contact-button, .contact-button:hover {
    margin: 0 20px;
    padding: 5px 15px;
    text-decoration: none;
    background-color: #a62017;
    color: white;
    border-radius: 40px;
}

.link-button:hover {
    font-weight: bold;
}

.app-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1023px) {
    .app-banner {
        background-position: right;
    }
}

.logo-small {
    color: #a62017;
    font-size: 2.5rem;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.logo-big {
    height: 50%;
    max-width: 80vw;
}

@media only screen and (min-width: 1024px) {
    .app-banner {
        justify-content: flex-end;
    }
    .logo-big {
        margin-right: 12.5%;
    }
}

.full-height {
    height: 100vh;
}

.half-height {
    height: 65vh;
}

.half-height .logo-big {
    margin-top: 20px;
}

@media only screen and (min-width: 1024px) {
    .half-height .logo-big {
        height: 40%;
    }
}

.nav-menu-button {
    color: #a62017;
    margin-right: -6rem;
}

button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

.nav-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 60vw;
    margin-right: -60vw;
    background-color: #a62017;
    color: white;
    padding: 20px;
    border-bottom-left-radius: 20px;
}

.nav-menu-item, .nav-menu-item {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}

.nav-menu-item, .nav-menu-item:hover {
    color: white;
    text-decoration: none;
}

.hero-background  {
    max-width: 100%;
    background-size: cover;
}

