﻿@font-face {
	font-family: ff_site;
	src: url("GregorianFLF.ttf") format("truetype");
}

/* Page Body */
html, body {
    margin: 0;
    padding: 0;
    background: black;
    overflow: hidden;
}

/* Background */
.bgimg {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.Logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    animation: logoMovement 5s ease-in-out infinite;
}

@keyframes logoMovement {
  0% {top: -20px;}
  50% {top: 0px;}
  100% {top: -20px;}
}

/* Center Content */
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

 /* General Text */
p, h1, h2{
    font-family: ff_site, sans-serif;
    color: #ffffff;
}

/* Clickable Text */
a {
    color: #a300d9;
    text-decoration: none;
}

a:hover {
    color: #a300d9;
}

/* Responsive Text */
.center h1{
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 0.25em;
}

.center h2{
    font-size: clamp(2.5rem, 2vw, 5rem);
    margin-bottom: 0.25em;
}

.center p {
    color: #a300d9;
    text-shadow: 0 0 7px #000000, 0 0 10px #000000, 0 0 20px #000000, 0 0 40px #000000;
    text-align: center;
    font-size: clamp(0.8rem, 1vw, 1.5rem);;
    max-width: clamp(300px, 50%, 600px);
    margin-bottom: 0;
}

/* Bottom Text */
.bottom {
    position: fixed;
    bottom: 40px;
    font-size: clamp(1rem, 0.8vw, 2rem);

    left: 50%;
    transform: translateX(-50%);
    text-align: center;

    /*text-shadow: 0 0 5px #bb0000, 0 0 10px #bb0000, 0 0 20px #bb0000, 0 0 40px #bb0000;*/
}

.NavBar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.NavBar ul li a {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
}

.NavBar ul li a img {
    width: clamp(3rem, 10vw, 6rem);
    filter: drop-shadow(0 0 0.75rem rgb(255, 255, 255));
}

.NavBar ul li a:hover {

    -webkit-filter: invert(100%);
    filter: invert(100%);
}

#credits
{
    color: white;
}
