:root {
    --app-width: 450px;
    --text-color: #A9A9A9;
    --main-white: #EAE7E7;
    --secondary-white: #C9C9C9;
    --main-black: #002038;
}

html {
    /* font-size: clamp(12px, 1vw, 20px); */
    font-size: 16px;
}

body {
    margin: 0;
    padding: 6.25rem 0 0 0;
    background-attachment: fixed;
    background-image: radial-gradient(circle, #6ba8c0 0%, #002038 100%);
    background-color: #002038;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

h1 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--main-white);
}

h1 + p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.438rem;
}

h2 {
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.75rem;
    color: var(--secondary-white);
}

header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    background: linear-gradient(180deg, #0B0B0B 35%, #021D32 100%);
}

header.active {
    background-image: none;
}

header div.wrapper {
    position: relative;
    max-width: var(--app-width);
    margin: 0 auto;
    padding: 0 1rem;
}

header img.logo {
    width: 5rem;
    height: auto;
    position: absolute;
    z-index: 10;
    top: 3.125rem;
    left: 1rem;
}

header a.menu-link {
    width: 1.75rem;
    height: auto;
    position: absolute;
    top: 3.125rem;
    right: 1rem;
    opacity: 0.75;
}

header nav {
    display: none;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: #021D32;
}

header nav div.wrapper {
    top: 0;
    padding-top: 1px;
}

header.active nav {
    display: block;
}

header nav div.buttons {
    margin-top: calc(6.25rem + 1rem);
    text-align: right;
}

header nav div.buttons button,
header nav div.buttons a.button {
    display: inline-block;
    margin-left: 0.375rem;
    padding: 0.5rem 0.875rem;
    background-color: transparent;
    border: 1px solid #E7AB31;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--main-white);
}

header nav div.buttons button.active,
header nav div.buttons a.active {
    background-color: #E7AB31;
    color: var(--main-black);
}

header nav ul {
    margin: 6.25rem 0 0 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    margin: 0 0 1.875rem 0;
    padding: 0 0 1.875rem 0;
    border-bottom: 1px solid #6D6D6D;
}

header nav ul li:last-of-type {
    border-bottom: 0;
}

header nav ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-white);
}

header nav ul li a::after {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(assets/icons/menu-item-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

div#app {
    position: relative;
    max-width: var(--app-width);
    margin: 0 auto;
    padding: 0 1rem;
}