/* CSS - Cascading Style Sheets */
/* Aktiviert die Maßhaltigkeit auf alle HTML-Elemente */
* { box-sizing: border-box; }
/* TAG-basierte Auszeichnung */
body {
    background-image: url('../../images/Hintergrund.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    font-family: Arial;
}

h1 {
    color: whitesmoke;
    text-align: center;
}
h2 {
    color: bisque;
}
h3 {
    color: bisque;
}

hr {
    border: solid 1px #8d1e3f;
}

a {
    color: royalblue;
}

pre {
    font-size: 12pt;
}

/* Klassenbasierte Auszeichnung */
.content {
    background-color: rgba(0, 0, 0, 0.5);
    width: 1000px;
    padding: 20px 30px;
    margin: auto;
}

/* ID-basierte Kennzeichnung */
#active {
    color: #8d1e3f;
    font-weight: bold;
}

.table {
    border: solid 1px black;
    border-collapse: collapse;
    caption-side: bottom;
    min-width: 400px;
    background-color: black;
}

.table th, .table td {
    border: solid 1px black;
    padding: 10px;
}

.table caption {
    text-align: right;
}

.table thead {
    background-color: black;
}

.table tbody {
    background-color: black;
}

.table tfoot {
    background-color: black;
}

/* Pseudoklassen */
a:hover {
    font-weight: bold;
    color: #cc2b5a;
}

a:active {
    color: yellow;
}

.header {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: grey;
    padding: 10px;
}

.header img {
    height: 50px; 
    margin-right: 215px; 
}

.header h1 {
    margin: 0;
    color: whitesmoke;
    font-size: 28px;
}
