﻿:root {
    --outline: 1.5px dashed #ff00a5;
    --card-bg: white;
    --gap: 12px;
}

body {
    margin: 0 0 0 0;
    background-image: url("/images/bg.jpg");
    font-family: "Manrope", Roboto, sans-serif;
    font-size: 14px;
    backdrop-filter: hue-rotate(45deg);
}

h1 {
    font-family: 'Coral Pixels', Roboto, sans-serif;
    font-size: 38px;
}


div.all-container {
    margin: 0 10% 0 10%;
}

div.flex-container {
    display: flex;
    flex-direction: row;
    gap: var(--gap);
}

div.column-container {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

div.row-container {
    display: flex;
    flex-direction: row;
}

div.main-left {
    width: 20%;
}

.navigation {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.navigationButton {
    margin: 10px;
}

    .navigation img {
        max-width: 100%;
        display: block;
    }

div.main-center {
    flex: 1;
}

div.main-right {
    width: 25%;
}

div.center {
    text-align: center;
}

.center img {
    margin: auto;
}

.border {
    border: 2px solid #1300ff;
    border-radius: 6px;
    background-color: var(--card-bg);
    overflow: clip;
}

.bborder {
    border: 2px solid black;
    border-radius: 6px;
    display: flex;
    outline: 0;
    background: transparent;
    background-color: var(--card-bg);
}

.box {
    margin: 2px;
    display: flex;
    justify-content: flex-start;
    flex: 1;
}

.dinkies {
    flex-direction: row;
    height: 250px;
    display: block;
    overflow: scroll;
}

    .dinkies img {
        display: inline;
        max-height: 100px;
    
    }

.selection {
    display: flex;
    flex: 1;
    background: #FF4761;
    background: linear-gradient(0deg, rgba(255, 71, 97, 1) 23%, rgba(255, 207, 207, 1) 100%);
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-family: 'Coral Pixels', Roboto, sans-serif;
    font-size: 18px;
    border: 0;
    border-radius: 4px;
    outline: 2px solid red;
    outline-offset: -1.5px;
}

a {
    display: flex;
    flex: 1;
    text-decoration: none;
    color: #FFFFFF;
}

.card {
    display: flex;
    flex-direction: column;
    flex: 1;
    container-type: inline-size;
    text-align: center;
}

    .card .card-title {
        background-color: #d4ff57;
        color: white;
        padding: 0;
        font-family: 'Coral Pixels', Roboto, sans-serif;
        white-space: nowrap;
        overflow: hidden;
        font-size: clamp(12px, 28px, 52px);
        text-transform: uppercase;
    }

    .card .card-body {
        padding: 6px;
    }


header {
    background-color: #000000;
    background-image: url("../images/shooter_splash.png");
    background-size: cover;
    background-position: 50% 40%;
    color: #fff;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-content: right;
    height: 525px;
    margin-bottom: -180px;
}

    header hero-text {
        color: black;
        font-family: 'Amarante';
        font-size: 200px;
        margin-right: 10%;
        text-transform: uppercase;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
        margin-bottom: 170px;
    }

footer {
    padding: 5px;
    text-align: center;
    font-size: 0.9rem;
}

.linkies {
    margin: auto;
}

    .linkies a {
        margin: 2px;
        display: inline;
    }

.copyButton {
    margin: 10px;
    padding: 10px;
    font-size: 10px;
    background-color: lightgray;
    color: deeppink;
    border-radius: 10px;
}