html {
    min-height: 100%;
}
body {
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    background-color: #000000;
    background-image: radial-gradient(#11581E, #041607), url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif");
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgba(128, 255, 128, 0.8);
    text-shadow:
        0 0 1ex rgba(51, 255, 51, 1),
        0 0 2px rgba(255, 255, 255, 0.8);
}
.noise {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: .02;
}
.overlay {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0) 100%);
    background-size: auto 4px;
    z-index: 1;
}
.overlay::before {
    content: "";
    pointer-events: none;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        0deg,
        transparent 0%,
        rgba(32, 128, 32, 0.2) 2%,
        rgba(32, 128, 32, 0.8) 3%,
        rgba(32, 128, 32, 0.2) 3%,
        transparent 100%);
    background-repeat: no-repeat;
    animation: scan 5s linear 0s infinite;
}
@keyframes scan {
    0%        { background-position: 0 -100vh; }
    35%, 100% { background-position: 0 100vh; }
}
.terminal {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 1200px;
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}
h1, h2, h3, p, h5 {
    margin: 0 0 1rem;
}
h1 {
    font-size: 3.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
p {
    font-size: 1.2rem;
}
h5 {
    font-size: 1.1rem;
}
.output {
    color: rgba(128, 255, 128, 0.8);
    text-shadow:
        0 0 1px rgb(51, 255, 51),
        0 0 2px rgba(255, 255, 255, 0.8);
}

.output::before {
    content: "> ";
}
.important {
    color: rgb(255, 0, 0);
    text-shadow:
        0 0 1px rgba(255, 51, 51, 0.4),
        0 0 2px rgba(255, 255, 255, 0.8);
}
.important::before {
    content: "> ";
}
a {
    color: #fff;
    text-decoration: none;
}
a::before {
    content: "[";
}
a::after {
    content: "]";
}
.domain {
    color: white;
}
.online {
    color: rgba(128, 255, 128, 0.8);
    text-shadow:
        0 0 1px rgb(51, 255, 51),
        0 0 2px rgba(255, 255, 255, 0.8);
}
.offline {
    color: rgb(255, 0, 0);
    text-shadow:
        0 0 1px rgba(255, 51, 51, 0.4),
        0 0 2px rgba(255, 255, 255, 0.8);
}

/* Ladebalken-Stile */
.progress-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}
.progress-bar {
    height: 30px;
    width: 0%;
    background-color: rgba(0, 128, 0, 1);
    text-align: center;
    line-height: 30px;
    color: #000;
    transition: width 1s linear; /* Animationsgeschwindigkeit für die Breite */
}
.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfekte Zentrierung */
    color: rgba(255, 255, 255, 1); /* Weiße Farbe für besseren Kontrast */
    font-weight: bold; /* Fettdruck */
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.7), /* Schatten zur besseren Lesbarkeit */
        0 0 10px rgba(0, 0, 0, 0.5);
}

/* Tabellen-Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}
th, td {
    padding: 1rem;
    text-align: left;
}
th {
    background-color: rgba(0, 0, 0, 0.7);
}
td {
    background-color: rgba(0, 0, 0, 0.5);
}
.col1 {
    width: 30%; /* 30% der Breite für die erste Spalte */
}
.col2 {
    width: 70%; /* 70% der Breite für die zweite Spalte */
}
form {
    max-width: 600px;  /* Maximale Breite des Formulars */
    margin: 0 auto;  /* Zentriert das Formular */
}

.form-row {
    display: flex;
    align-items: center;  /* Vertikale Ausrichtung der Eingabefelder */
    margin-bottom: 15px;  /* Abstand zwischen den Reihen */
}

label {
    width: 30%;  /* Breite der Labels */
    padding-right: 10px;  /* Abstand zwischen Label und Eingabefeld */
    text-align: right;  /* Text im Label rechtsbündig */
}

input, textarea {
    flex: auto;  /* Eingabefelder nehmen den restlichen Platz in der Zeile ein */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;  /* Benutzer können die Höhe des Textbereichs ändern */
}

input[type="submit"] {
    width: 100%;  /* Submit-Button nimmt die volle Breite ein */
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Responsive Styles */
/* Sehr große Bildschirme (ab 1200px) */
@media (min-width: 1200px) {
.terminal {
padding: 2.25rem;
}
h1 {
font-size: 2.75rem;
}
h2 {
font-size: 2.25rem;
}
h3 {
font-size: 1.85rem;
}
p {
font-size: 1.15rem;
}
h5 {
font-size: 1rem;
}
.footer {
font-size: 1rem;
}
}

/* Große Bildschirme (1024px bis 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
.terminal {
padding: 1.9rem;
}
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.6rem;
}
p {
font-size: 1.05rem;
}
h5 {
font-size: 0.95rem;
}
.footer {
font-size: 0.95rem;
}
}

/* Mittlere Bildschirme (768px bis 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
.terminal {
width: 95%;
padding: 1.6rem;
}
h1 {
font-size: 2.25rem;
}
h2 {
font-size: 1.85rem;
}
h3 {
font-size: 1.5rem;
}
p {
font-size: 1.05rem;
}
h5 {
font-size: 0.95rem;
}
.footer {
font-size: 0.95rem;
}
}

/* Kleine Bildschirme (480px bis 767px) */
@media (max-width: 767px) and (min-width: 480px) {
.terminal {
width: 95%;
padding: 1.35rem;
}
h1 {
font-size: 1.85rem;
}
h2 {
font-size: 1.6rem;
}
h3 {
font-size: 1.3rem;
}
p {
font-size: 0.95rem;
}
h5 {
font-size: 0.9rem;
}
.footer {
font-size: 0.9rem;
}
}

/* Sehr kleine Bildschirme (bis 479px) */
@media (max-width: 479px) {
.terminal {
width: 100%;
padding: 0.9rem;
}
h1 {
font-size: 1.6rem;
}
h2 {
font-size: 1.4rem;
}
h3 {
font-size: 1.15rem;
}
p {
font-size: 0.85rem;
}
h5 {
font-size: 0.8rem;
}
.footer {
font-size: 0.8rem;
}
}