
/* core.css - Shared styles for all domains */

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #f0f0f0;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}
.container {
    text-align: center;
    padding: 3em 2em;
}

button {
    font-family: 'Orbitron', sans-serif;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
}
.button-row {
  text-align: center;
  margin-top: 2rem;
}
.button-row a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #6ec1e4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.button-row a:hover {
  background-color: #4ea5c3;
}

.scrollbox {
    width: 700px; /* or whatever width you need */
    height: 400px; /* fixed height */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5em;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    border: 1px solid #444;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #f0f0f0;
    margin: 2em auto;
    text-align: left;
}