
@font-face {
font-family: 'D-DIN';
font-style: normal;
font-weight: normal;
src: local('D-DIN Regular'), url('./assets/fonts/D-DIN.woff') format('woff');
}

@font-face {
font-family: 'D-DIN DIN-Italic';
font-style: normal;
font-weight: normal;
src: local('D-DIN DIN-Italic'), url('./assets/fonts/D-DIN-Italic.woff') format('woff');
}

@font-face {
font-family: 'D-DIN DIN-Bold';
font-style: normal;
font-weight: normal;
src: local('D-DIN DIN-Bold'), url('./assets/fonts/D-DIN-Bold.woff') format('woff');
}

@font-face {
font-family: 'D-DIN Condensed Regular';
font-style: normal;
font-weight: normal;
src: local('D-DIN Condensed Regular'), url('./assets/fonts/D-DINCondensed.woff') format('woff');
}

@font-face {
font-family: 'D-DIN Exp Regular';
font-style: normal;
font-weight: normal;
src: local('D-DIN Exp Regular'), url('./assets/fonts/D-DINExp.woff') format('woff');
}

@font-face {
font-family: 'D-DIN Exp DINExp-Italic';
font-style: normal;
font-weight: normal;
src: local('D-DIN Exp DINExp-Italic'), url('./assets/fonts/D-DINExp-Italic.woff') format('woff');
}

@font-face {
font-family: 'D-DIN Condensed DINCondensed-Bold';
font-style: normal;
font-weight: normal;
src: local('D-DIN Condensed DINCondensed-Bold'), url('./assets/fonts/D-DINCondensed-Bold.woff') format('woff');
}

@font-face {
font-family: 'D-DIN Exp DINExp-Bold';
font-style: normal;
font-weight: normal;
src: local('D-DIN Exp DINExp-Bold'), url('./assets/fonts/D-DINExp-Bold.woff') format('woff');
}

/* ----------------------------------------------------- */

:root {
    --primary-color: #C9FA3E;
    --accent-color: #FE4C90;
    --border-color: rgba(255, 255, 255, 0.15);
    --background-overlay: rgba(0, 0, 0, 0.5);
    --black-txt:rgb(23, 22, 18);
    --font-primary: 'D-DIN', 'Aptos', 'Inter', 'Roboto', sans-serif;
}

body {
    font-family: var(--font-primary);
    background: url('assets/bg.png') no-repeat fixed;
    background-size: cover;
    color: white;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.logo-container {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 1em 8em;
}

/* Default button (networks) */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--primary-color);
    outline: 2px var(--border-color) solid;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black-txt);
    font-weight: bold;
    font-size: 18px;
    font-family: "D-DIN DIN-Bold";
}
.btn:hover {
    transition: 200ms all;
    outline-offset: .3em;
    outline-color: var(--primary-color);
    background: rgb(168,213,37);
    background: linear-gradient(0deg, rgb(149, 191, 23) 0%, rgba(201,250,62,1) 25%);
}

/* Main button (Discord) */
.btn#discord svg {
    width: 27px;
    margin-right: 0.8em;
}
.btn#discord {
    padding-block: 20px;
}

/* Button with labelled (those in tiles) */
.labelled {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--primary-color);
    outline: 2px var(--border-color) solid;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black-txt);
    font-weight: bold;
    font-size: 18px;
    font-family: "D-DIN DIN-Bold";
    justify-content: space-between;
    text-align: center;
}
.labelled:hover {
    transition: 200ms all;
    outline-offset: .3em;
    outline-color: var(--primary-color);
    background: rgb(168,213,37);
    background: linear-gradient(0deg, rgb(149, 191, 23) 0%, rgba(201,250,62,1) 25%);
}


/* Button secondary with labelled (those in tiles) */
.second {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(168,213,37,20%);
    outline: 2px var(--border-color) solid;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    font-family: "D-DIN DIN-Bold";
    justify-content: space-between;
    text-align: center;
}
.second:hover {
    transition: 200ms all;
    outline-offset: .3em;
    outline-color: var(--primary-color);
}

/* Section with socials */
.social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    justify-content: center;
}
/* All buttons section */
.button-group {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
}

/* Showcased tile */
.tiles {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tile {
    position: relative;
    width: 42rem;
    max-width: 90vw;
    border-radius: 14px;
    border: 2px solid var(--border-color);
    overflow: hidden;
}
.tile p {
    font-size: 18px;
}
.tile video, .tile img:not(.logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-overlay);
}
.tile-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 80%;
    justify-content: space-evenly;
}

/* Basic header style */
h1, h2 {
    font-family: "D-DIN Condensed DINCondensed-Bold";
}
h3 {
    font-weight: 200;
}