@font-face {
    font-family: VT323;
    src: url('https://file.garden/ZdfoEKiNkhzINRFn/VT323-Regular.ttf');
}

body {
    font-family: 'VT323', monospace;
    margin: 0;
    background-color: #000000;
    color: #4AF626;
    background-image: var(--body-bg-image);
}

h1,
h2,
h4 {
    text-align: center;
}

h1 {
    font-size: 80px;
    text-align: center;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 40px;
    color: crimson;
}

a {
    font-family: 'VT323', monospace;
    background-color: #000000;
    border: 0px;
    text-align: center;
    color: #4AF626;
    font-size: 35px;
    margin: auto;
    display: block;
}

a .comment {
  display: none;
}

a:hover .replies {
  display: none;
}

a:hover .comment {
  display: inline;
}


.box {
    background-color: #000000;
    border: 0px solid #4AF626;
    padding: 10px;
    width: calc(30% - 20px);
    margin:auto;
    display: block;
    text-align: left;
}


.blink {
  animation: blinker 1s step-start infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}