@keyframes fadeInDownward {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@font-face {
font-family: "HK Grotesk";
src: url("/static/HKGroteskWide-SemiBold.otf");
}
html {
height: 100%;
background: linear-gradient(#650b0b, #ab1616);
}
h1 {
display: none;
}
main {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
main * {
animation-name: fadeInDownward;
animation-duration: 1s;
}
body {
font-family: "HK Grotesk";
font-size: 1.5em;
text-transform: uppercase;
text-align: center;
color: white;
}
#logo {
width: 25em;
margin-bottom: 2.5em;
}
@media screen and (max-width: 375px) {
#logo {
max-width: 75%;
min-width: 10em;
}
}
a {
color: white;
text-decoration: none;
border-bottom: 2px solid white;
}
#ui {
display: inline-block;
padding: 1em 2em;
background: black;
border-radius: 1em;
}
.text {
display: block;
font-family: monospace;
color: white;
background: black;
border: 2px dashed white;
padding: 0.5em 1em;
margin: 1em 0;
}
.button {
font-family: "HK Grotesk";
text-transform: uppercase;
text-align: center;
color: black;
background: white;
border: none;
padding: 0.5em 1em;
border-radius: 1em;
}
textarea {
width: 20em;
height: 10em;
}