/* ---------------------------------------------------------------------------------------------------- ITEMS --- */

website-header {
    display: block;
    height: 80px;
}

welcome-screen {
    display: block;
    height: 100vh;
}

* {
    box-sizing: border-box;
    overflow-wrap: anywhere;
    pointer-events: none;
}

body {
    background-color: #000000;
    margin: 0;
    color: #FFFFFF;
}

:where(h1, h2, h3, h4, h5, h6, p, ul) {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
}

:where(a) {
    pointer-events: auto;
    cursor: pointer;
}

.heading1 {
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 2rem;
    color: #FFA500;
}

.heading2 {
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 1.625rem;
    color: #FFA500;
}

.heading3 {
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 1.375rem;
    color: #FFA500;
}

.heading4 {
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 1.125rem;
    color: #FFA500;
}

.heading5 {
    font-family: "ADLaMDisplay", Arial, sans-serif;
    font-size: 1rem;
    color: #FFA500;
}

.heading6 {
    font-family: "ADLaMDisplay", Arial, sans-serif;
    font-size: 1.125rem;
    color: #FFFFFF;
}

.text {
    font-family: "ADLaMDisplay", Arial, sans-serif;
    font-size: 1rem;
    color: #FFFFFF
}

.placeholder-container {
    display: flex;
    position: relative;
    width: 100%;
    height: 5rem;
    flex-direction: column;
    line-height: 0;
    justify-content: center;
    align-items: center;
}

.button {
    display: inline-flex;
    height: 50px;
    margin: 1rem 0;
    font-family: "ADLaMDisplay", Arial, sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    align-items: center;
    background-color: #FFA500;
    border-radius: 35px;
    padding: 0.75rem 1.5rem;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 0 0 0 #FFFFFF;
    transform-origin: center center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease;
}

.button:hover {
    color: #FFFFFF;
    background-color: #FFA500;
    transform: scale(1.03);
    box-shadow: 0 0 16px 4px #FFFFFF;
}

.button svg {
    width: 1rem;
    height: 1rem;
    fill: #FFFFFF;
}

.link {
    display: inline-block;
    position: relative;
    font-family: "ADLaMDisplay", Arial, sans-serif;
    font-size: 1rem;
    color: #00CCFF;
    text-decoration: none;
}

.link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -2px;
    background-color: #00CCFF;
    transition: width 0.25s;
}

.link:hover::after {
    width: 100%;
}

.overlay {
    display: none;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #00000090;
    z-index: 1000;
    pointer-events: auto;
}

.note {
    display: none;
    position: fixed;
    flex: 1;
    flex-direction: column;
    width: 80%;
    min-height: 0;
    height: 80%;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 5rem;
    border: 2px solid #FFFFFF;
    border-radius: 15px;
    background-color: #000000;
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
}



/* ---------------------------------------------------------------------------------------------------- FONTS --- */



@font-face {
    font-family: "Orbitron";
    src: url("/assets/fonts/Orbitron.woff") format("woff"),
         url("/assets/fonts/Orbitron.ttf") format("tff");
    font-display: swap;
}

@font-face {
    font-family: "ADLaMDisplay";
    src: url("/assets/fonts/ADLaMDisplay.woff") format("woff"),
         url("/assets/fonts/ADLaMDisplay.ttf") format("tff");
    font-display: swap;
}



/* ---------------------------------------------------------------------------------------------------- LOADING-ICON */



.loading-container {
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

.loading-icon {
  width: 100%;
  height: 200px;
}

.loading-icon-path {
  stroke: #FFA500;
  stroke-dasharray: 20 330;
  animation: dash 1.2s linear infinite;
  animation-delay: 0.01s;
}

@keyframes dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -350;
  }
}