@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    background-color: #0d0d0d;
    color: #00ff00;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

form, .results {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ff00;
    width: 300px;
    margin-top: 20px;
    text-align: center;
}

input[type="text"], input[type="submit"] {
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #00ff00;
    border-radius: 5px;
    background: #222;
    color: #00ff00;
}

input[type="submit"] {
    cursor: pointer;
    background-color: #00ff00;
    color: #111;
    border: none;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #33ff33;
}
.site-title {
    text-decoration: none;
    color: inherit;
}
.results a {
    color: #33ff33;
    text-decoration: none;
}

.results a:hover {
    color: #66ff66;
}

.results button {
    background: #111;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.results button:hover {
    background-color: #00ff00;
    color: #111;
}

.letter {
    font-size: 1.1em;
    color: #00ff00;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

footer {
  vertical-align: bottom;
  position:absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  color: #00ff00;
  font-size: 11px;
  margin-bottom: 10px;
  margin-top: 5px;
}
hr {
    height: 1px;
    color: #00ff00;
    background: #00ff00;
    width: 35%;
    font-size: 0;
    border: 0;
    margin-bottom: 5px;
    margin-top: 5px;
}
.flash-msg {
    display: none;
    color: lime;
    margin-top: 10px;
    transition: opacity 0.5s ease-in-out;
}
