@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

#header {
    width: calc(100% - 5rem);
    height: 50px;
    background-color: #002a3b;
    background-image: repeating-linear-gradient(120deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, .1) 1px, transparent 0, transparent 60px), repeating-linear-gradient(60deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, .1) 1px, transparent 0, transparent 60px);
    background-size: 70px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 96px;
    padding: 0 2.5rem;
}

@media (max-width: 992px) {
    #header {
        padding: 0 0.75rem;
        width: calc(100% - 1.5rem);
        min-height: 72px;
    }
}

#header .logo {
    margin-right: auto;
}

#header .logo img {
    height: 3.5rem;
    width: auto;
}

@media (max-width: 992px) {
    #header .logo img {
        height: 2.125rem
    }
}

#header .navigation a {
    border-radius: 0.375rem;
    text-transform: uppercase;
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: center;
    display: flex;
    background-color: #f0b500;
    color: #000;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-weight: 700;
    line-height: 1.5;
    border: 1px solid #f0b500;
    padding: 0.625rem 1.25rem;
}

#header .navigation a:hover {
    background-color: #f2c026;
    border: 1px solid #f2bc1a;
}

#vr {
    width: 100%;
    height: calc(100vh - 95px);
    border: 0;
}

@media (max-width: 992px) {
    #vr {
        height: calc(100vh - 72px);
    }
}