/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* @import "tailwindcss"; */

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

body {
    width: 100vw;
    min-height: 100vh;
    background-image: url("/assets/arcade-ed5ce954.jpg");
    background-color: var(--color-bg-main);
    background-blend-mode: darken;
    overflow: hidden;
}

.container {
    background-color: var(--color-bg-main);
    background-blend-mode: darken;
    padding: 1rem;
    margin: 1rem;
    border-color: red;
        border-width: 2px;
    border-style: dotted;
    color: white;
}

nav {
    /* background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken; */
    padding: 1rem;
    margin: 1rem;
    border-color: purple;
    border-style: dotted;
    border-width: 2px;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /*z-index: 99;*/
    background-color: var(--color-bg-main);
}

.navlink {
    text-decoration: none;
}

.mousetrail-dot {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform, opacity, left, top;
}