@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono/JetBrainsMono-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}


body {
    font-family: 'JetBrains Mono', monospace;
    background-image: url("../images/blinkie_stars.gif");
    background-size: auto;
    background-position: top left;
    background-repeat: repeat;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    padding: 40px;
    margin: 80px auto;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 12px;
}

.enter-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.enter-button:hover {
    background: white;
}


