@font-face {
    font-family: "Asmovian Regular";
    src: url("/res/Asimovian-Regular.ttf");
}

html {
    height: 100%;
}

body {
    font-family: sans-serif;
    font-size: 1.5rem;
    color: #F700EE;
    text-shadow: 0 0 5px #F780EE;
    background-color: black;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
      rgba(0, 0, 0, 0.15),
      rgba(50, 50, 50, 0.15) 1px,
      transparent 1px,
      transparent 2px
    );
    pointer-events: none; 
}

header {
    height: 150px;
}

section {
    padding: 5px;
}

a {
    text-shadow: none;
}

a:link {
    color: #33FF00;
}

.flash {
    color: #ff69b4;
    border: 3px solid #ff69b4;
    box-shadow: 0 0 10px #9ecaed;
    /* padding: 5px; */
}

.flash p {
    margin: 0;
}

.asmovian {
    font-family: "Asmovian Regular";
/*    text-transform: uppercase; */
}

.center {
    text-align: center;
}

.center-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

/* .contact {
    border: 3px solid #33FF00;;
    padding: 5px;
    width: 100%;
} */

.form-group {
    margin: auto;
    width: 400px;
    padding: 5px;
    display: block;
}

input, textarea {
    background-color: gray;
    color: white;
    font-family:'Courier New', Courier, monospace;
}

::placeholder {
    color: lightgrey;
}

:hover::placeholder {
    color: gray;
}

::-ms-input-placeholder {
    color: lightgrey;
}

:hover::-ms-input-placeholder {
    color: lightgrey;
}


label, input, textarea {
    border: 3px solid transparent;
    padding: 5px;
    width: 100%;
}

label {
    text-align: left;
}

input:hover, textarea:hover {
    border: 3px solid #33FF00;
    box-shadow: 0 0 10px #9ecaed;
    background-color: lightgray;
    color: black;
}

input:focus, textarea:focus {
    outline: 3px solid #33ff00;
}

button {
    border: 3px solid transparent;
    font-size: 1.5rem;
    background-color: gray;
    color: #33FF00;
    padding: 5px;
    cursor: pointer;
}

button:hover {
    border: 3px solid #33FF00;
    box-shadow: 0 0 10px #9ecaed;
    background-color: lightgray;
}
