:root {
    --background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://cdn.waren.io/files/warengroup/assets/images/ai-generated-9087010-2.jpg"), linear-gradient(to bottom right, #cf2fc3, #22798c);
    --background-dark: #111111;
    --background-light: #ffffff;
    --text: var(--text-light);
    --text-dark: #000000;
    --text-light: #ffffff;
    --font: "Roboto Medium";
    --font-heading: "Akashi";
    --font-emoji: sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-image: var(--background) !important;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

@font-face {
    font-family: "Akashi";
    font-display: swap;
    src: local("Akashi"), url("https://cdn.waren.io/files/warengroup/assets/fonts/Akashi.ttf");
}

@font-face {
    font-family: "Roboto Medium";
    font-display: swap;
    src: local("Roboto Medium"), url("https://cdn.waren.io/files/warengroup/assets/fonts/Roboto-Medium.ttf");
}

* {
    box-sizing: border-box;
    font-family: var(--font), sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    margin: 0;
}

*, *:active, *:focus, *:hover, *:visited, *:link {
    color: var(--text);
}

h1, h2, h3, h4, h5 {
    --font: var(--font-heading);
}

.emoji {
    --font: sans-serif;
}

.button, .buttons, header, nav, main, main section, footer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.button, main, main section, footer {
    flex-direction: column;
}

.button {
    cursor: pointer;
    width: 60px;
    height: 60px;
}

.button:hover {
    background-color: #ffffff11;
}

.button.large {
    width: 100%;
    min-width: 100px;
}

.button i {
    font-size: larger;
}

.button h1, .buttons .button, nav {
    font-size: x-large;
}

.button span {
    font-size: x-small;
    font-weight: bold;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.buttons {
    flex-direction: row;
    gap: 0.5rem;
}

.buttons .button {
    background-color: #000000aa;
    border-radius: 60px;
}


header, footer {
    background-color: var(--background-dark);
}

nav, main {
    height: 100%;
    overflow: auto;
}

header {
    height: 60px;
}

nav {
    background-color: #0a0a0a;
    display: none;
    z-index: 1;
    text-align: center;
    padding: 5rem;
}

nav div .title {
    font-weight: bold;
    font-size: xx-large;
}

nav div ul {
    list-style-type: none;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

nav div ul li {
    border-bottom: 2px solid #ffffff55;
    padding: 1rem;
}

nav div ul li:last-child {
    border-bottom: none;
}

footer {
    min-height: 60px;
}

body[data-wg-layout="app"] {
    display: grid;
    grid-template-areas:
        'header'
        'content'
        'footer';
    grid-template-columns: 1fr;
    grid-template-rows: 60px 1fr 60px;
}

body[data-wg-layout="app"] header {
    grid-area: header;
}

body[data-wg-layout="app"] main {
    grid-area: content;
}

body[data-wg-layout="app"] nav {
    grid-area: content;
}

body[data-wg-layout="app"] footer {
    height: 60px;
    grid-area: footer;
    flex-direction: row;
    overflow: auto;
}

body[data-wg-layout="website"] footer {
    padding: 5rem;
}
