:root {
    --accent-1: #025B7F;
    --accent-2: #1985af;
    --accent-3: #3ba5cf;
    --accent-b1: rgb(6, 90, 92);
    --accent-b2: rgb(14, 127, 129);
    --accent-b3: rgb(38, 168, 170);
    --accent-c1: rgb(113, 27, 153);
    --accent-c2: rgb(138, 43, 182);
    --accent-c3: rgb(177, 82, 221);
    --accent-d1: rgb(119, 145, 75);
    --accent-d2: rgb(85, 107, 47);
    --accent-d3: rgb(58, 75, 29);
    --background: rgb(2, 27, 37);
    --background-soft: rgb(13, 46, 59);
    --background-dark: rgb(16, 20, 21);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
}

body {
    background-color: var(--background);
    color: var(--accent-3);
    width: 100%;
    height: 100%;
    font-size: clamp(14px, 3vw, 18px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Fraunces", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "WONK" 0;
    width: 100%;
}

h1 {
    color: var(--accent-1);
    font-size: clamp(48px, 3vw, 64px);
}

h2 {
    color: var(--accent-2);
    font-size: clamp(24px, 3vw, 48px);
    line-height: .875;
    font-weight: 400;
}

h3 {
    text-align: center;
    font-size: clamp(20px, 3vw, 24px);
    text-transform: uppercase;
    font-weight: 400;
    color: var(--accent-b1);
}

h4 {
    color: var(--accent-b1);
    font-size: clamp(18px, 3vw, 20px);
    text-transform: uppercase;
}

h5 {
    color: var(--accent-c3);
    font-size: clamp(16px, 3vw, 18px);
    text-transform: uppercase;
}

h6 {
    color: var(--accent-c2);
    font-size: clamp(12px, 3vw, 16px);
    text-transform: uppercase;
}

a {
    color: var(--accent-c1);
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: inherit;
}

a:hover {
    color: var(--accent-c3);
    text-decoration: none;
}

p {
    font-family: "Inconsolata", monospace;
    line-height: 1.3;
}

header,
footer {
    width: 100%;
    min-height: 24px;
    background: var(--background-soft);
}

nav {
    width: 100%;
}

.navbar {
    min-height: 86px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
    list-style: none;
    height: fit-content;
}

nav ul li {
    flex: 1 0 0;
    align-self: center;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: goldenrod;
    transition: all 0.5s ease;
    height: fit-content;
    width: 100%;
    justify-content: center;
    display: flex;
    align-content: center;
}

.navbar__main_sub {
    display: none;
    transition: all 0.3s ease;
}

nav ul li:hover {
    transition: all 0.3s ease;

    .navbar__main_sub {
        display: block;
    }

    ;
}

nav ul li a {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 4px;
    flex-direction: column;
    text-decoration: none;
    color: var(--accent-1);
    align-content: center;
    justify-content: center;
    padding: 12px;
    font-family: "Inconsolata", monospace;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    align-items: center;
}

nav ul li a:hover {
    background-color: rgba(6, 90, 92, 0.2);
}

nav ul li a i {
    font-size: 36px;
    height: 36px;
}

.page-wrapper {
    padding: clamp(12px, 3vw, 48px);
}

main {
    min-width: 30ch;
    width: 100%;
    border: 1px solid var(--accent-d3);
    border-radius: 12px;
}

header.header__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

aside {
    min-width: 15ch;
    max-width: 30ch;
    padding: 12px;
}

.hero {
    margin: 0 auto;
    padding: 24px;
    text-align: center;
}

.grid {
    display: grid;
}

.padding-big {
    padding: 24px;
}


.flex-item {
    background-color: rgba(58, 75, 29, 0.08);
    border-radius: 16px;
}

.flex-item__header {
    padding: 8px;
}

.flex-item section {
    padding: 24px 0;
}

.flex-item section.connection-wrapper {
    padding: 0;
}

.connect-buttons {
    padding: 12px;
    font-size: 36px;
    display: flex;
    justify-content: space-evenly;
    height: 36px;
}

.connect-link {
    text-decoration: none;
    color: var(--accent-d1);
}

.connect-link:hover {
    color: var(--accent-d3);
}

.accent {
    color: var(--accent-1);
}

strong,
b {
    color: var(--accent-d2);
}

.footer__main {
    position: sticky;
    bottom: 0;
    height: 48px;
    font-family: "Fraunces";
    letter-spacing: 1.5px;
}

.footer__main p {
    font-family: inherit;
}