/* =========================
   CSS Reset / Base
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    margin: 0;
    overflow-y: scroll;
}

body {
    height: 100%;
    margin: 0;
}

/* =========================
   Fonts
========================= */

@font-face {
    font-family: "Orbitron";
    src: url("../assets/fonts/Orbitron.ttf");
}

@font-face {
    font-family: "Montserrat";
    src: url("../assets/fonts/Montserrat.ttf");
}

/* =========================
   Body Defaults
========================= */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    background: linear-gradient(90deg, #586c85, #3d4461);
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: white;
    font-family: "Montserrat", system-ui, sans-serif;

    text-shadow:
        0.5px 0.5px 10px rgba(255, 255, 255, 0.35);
}

/* Allow footer to stick to bottom */
main {
    flex: 1;
}

/* =========================
   Headings
========================= */

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", monospace;
    margin: 0;
}

/* =========================
   Text Elements
========================= */

p {
    line-height: 1.6;
    margin: 0;
    font-size: larger;
}

/* =========================
   Links
========================= */

a {
    display: inline-block;
    color: #38cfe9;
    font-weight: bold;
    text-decoration: none;

    text-shadow:
        1px 1px 10px rgba(56, 207, 233, 0.5);

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease,
        transform 0.25s ease;
}

a:hover {
    color: #38e9c3;
    text-shadow:
        1px 1px 10px rgba(56, 233, 195, 0.5);
    transform: scale(1.05);
}

/* =========================
   Utility Classes (optional)
========================= */

.center {
    text-align: center;
}

.hidden {
    display: none;
}