header img.banner {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-shadow: 0 -1px 4px rgb(90, 90, 90);
}

body>nav {
    box-sizing: border-box;
    margin-bottom: 2rem;
    height: 72px;
    position: sticky;
    z-index: 10;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0b334d;
    background: radial-gradient(circle, rgba(11, 51, 77, 1) 0%, rgba(33, 86, 89, 1) 56%, rgba(40, 58, 88, 1) 100%, rgba(34, 34, 34, 1) 77%);
    box-shadow: 0px 0px 3px rgb(122, 122, 122);
}

body>nav div.btns {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

body>nav a.logo {
    position: absolute;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body>nav a.logo img {
    width: 3rem;
    height: 3rem;
    image-rendering: pixelated;
}

body>nav div.btns a {
    display: inline-flex;
    box-sizing: border-box;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    border-radius: 5px;
    font-size: 1rem;
    height: 3rem;
    margin: .75rem auto;
    text-decoration: none;
    color: rgb(180, 180, 180);
    transition: background 0.15s ease, transform 0.2s ease;
}

body>nav div.btns a:hover {
    background-color: rgb(122, 122, 122);
}