/* Datei: /u98810968/Homepage_MR_MultiReality/assets/css/global.css */

/* Importiere Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* Allgemeines Styling für die gesamte Website */
body {
    font-family: 'Roboto', sans-serif; /* Standard-Schriftart für längere Texte */
    margin: 0;
    padding: 0;
    background-color: black; /* Schwarzer Hintergrund für den Body */
    color: #333;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif; /* Gleiche futuristische Schriftart für alle Überschriften */
    font-weight: bold;
    color: #00b4d8;
}


/* Allgemeines Styling für Links */
a {
    color: #00b4d8;
    text-decoration: none;
    transition: color 0.3s ease;
}


a:hover {
    color: #0077a8;
}

/* Allgemeines Layout-Styling für Header, Footer und Main */
header, footer {
    padding: 20px;
    background: linear-gradient(to right, #1a1a1d, #4e4e50); /* Verlauf Hintergrund */
    color: white;
}

main {
    padding: 20px;
}

/* Formular- und Schaltflächen-Styling */
button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #00b4d8;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0077a8;
}

/* Flexbox/Grid-Anpassungen für Container */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

/* Typografie */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif; /* Gleiche futuristische Schriftart für alle Überschriften */
    font-weight: bold;
    color: #00b4d8;
}

p {
    font-size: 1em;
    line-height: 1.6;
}

/* Tabellen-Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #00b4d8;
    color: white;
}

/* Bilder */
img {
    max-width: 100%;
    height: auto;
}
