﻿@font-face {
	font-family: HELP;
	src: url("HelpMe.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;
}

/* Center Content */
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

 /* General Text */
p, h1{
    font-family: HELP, sans-serif;
    color: #ffffff;
}

/* Clickable Text */
a {
    color: #bb0000;
    text-decoration: none;
}

a:hover {
    color: #ff0000;
}

/* Responsive Text */
.center h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 0.25em;
}

.center p {
    color: #c00000;
    text-shadow: 0 0 5px #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;*/
}

#credits
{
    color: white;
}
