html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}



@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    background-color: #0e0e0e;
    color: #34d034;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 60px;
    padding: 0;
}

header {
    text-align: center;
}

    header img {
        max-height: 80px;
        margin-top: 10px;
    }



.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.card {
    border: 2px solid #34d034;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #1a1a1a;
    border-radius: 4px;
    box-shadow: 0 0 10px #34d03433;
}

footer {
    text-align: center;
    padding: 10px;
    border-top: 2px solid #34d034;
    font-size: 0.9em;
}

