@font-face {
    font-family: 'DigitalArcade';
    src: url('./Glitch-Demo.ttf') format('truetype');
}

body {
    background-image: url(./space-bg.png);
    font-family: 'DigitalArcade', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.header {
    width: 80vw;
    height: 50px;
    background: #0f0f0f;
    background: linear-gradient(52deg, rgba(15, 15, 15, 1) 0%, rgba(23, 23, 23, 1) 50%, rgba(41, 41, 41, 1) 100%);
    border-radius: 0px 0px 10px 10px;
    font-size: 35px;
    top: 0;
    position: sticky;
}

.header a {
    color: white;
}

.content {
    width: 90vw;
}

input.retro {
    font-family: 'DigitalArcade', sans-serif;
    font-size: 24px;
    padding: 12px 20px;
    border: 3px solid #ff0000;
    background-color: black;
    color: #ff0000;
    outline: none;
    box-shadow: inset 0 0 5px #ff0000, 0 0 10px #ff0000;
    width: 300px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

input.retro:focus {
    border-color: #fff;
    box-shadow: inset 0 0 5px #fff, 0 0 12px #ff0000;
    background-color: #111;
}


h1 {
    font-size: 100px;
    color: red;
}

h2 {
    font-size: 50px;
    color: red;
}

p {
    font-size: 35px;
}
