/*
  _  ________ _____ _____   ____  _   _ _    _ _    _  _____ 
 | |/ /  ____|_   _|  __ \ / __ \| \ | | |  | | |  | |/ ____|
 | ' /| |__    | | | |__) | |  | |  \| | |__| | |  | | (___  
 |  < |  __|   | | |  _  /| |  | | . ` |  __  | |  | |\___ \ 
 | . \| |____ _| |_| | \ \| |__| | |\  | |  | | |__| |____) |
 |_|\_\______|_____|_|  \_\\____/|_| \_|_|  |_|\____/|_____/ 

 2024 © keironhus
 https://keironhus.de/license
*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Dunkelblauer Hintergrund */
    color: #fff; /* Weiße Schriftfarbe */
    display: flex;
    justify-content: center; /* Zentrieren des Inhalts horizontal */
    align-items: center; /* Zentrieren des Inhalts vertikal */
    height: 100vh;
}

.container {
    display: flex;
    justify-content: space-between; /* Platzieren der Elemente an den Seiten */
    align-items: center; /* Zentrieren des Inhalts vertikal */
    width: 80%; /* Breite der Hauptcontainer */
    max-width: 1200px; /* Maximale Breite des Containers */
}

.left-side {
    flex: 1; /* Nimmt den verfügbaren Platz ein */
    text-align: center;
}

.right-side {
    flex: 1; /* Nimmt den verfügbaren Platz ein */
    text-align: center;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: #fff; /* Farbe der Social-Media-Icons */
    font-size: 24px; /* Größe der Social-Media-Icons */
    transition: color 0.3s; /* Sanfte Farbübergänge bei Hover */
}

.social-icons a:hover {
    color: #ff9900; /* Farbe der Social-Media-Icons bei Hover */
}

.text-container {
    padding: 20px;
    position: relative; /* Position relativ für die Positionierung des Balkens */
}

.progress-bar {
    position: absolute; /* Position absolut für die Positionierung des Balkens */
    bottom: 20px; /* Abstand zum unteren Rand */
    left: 50%; /* Balken horizontal zentrieren */
    transform: translateX(-50%); /* Balken horizontal zentrieren */
    width: 100%;
    height: 5px; /* Höhe des Balkens */
    background-color: #333; /* Farbe des Balkens */
    border-radius: 5px; /* Abgerundete Ecken */
    z-index: -1; /* Hinter den Text legen */
    overflow: hidden; /* Überlauf verstecken */
}

.progress-bar-fill {
    height: 100%;
    width: 100%; /* Der Balken füllt sich zu Beginn */
    background-color: #ff9900; /* Farbe des gefüllten Bereichs */
    animation: fill-progress 10s linear forwards; /* Balkenanimation */
}

@keyframes fill-progress {
    0% { width: 100%; } /* Zu Beginn ist der Balken komplett gefüllt */
    100% { width: 0%; } /* Nach 10 Sekunden ist der Balken leer */
}

.secret-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Hintergrundfarbe mit Transparenz */
    display: none; /* Anfangs ausgeblendet */
    justify-content: center;
    align-items: center;
}

.secret-list-content {
    position: relative;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
}

.secret-list h3 {
    color: #fff;
    text-align: center;
}

.secret-item {
    margin-top: 10px;
    color: #fff;
}

.secret-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff;
}

.secret-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9900;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s;
}

.timer {
    font-size: small;
}

.fontSmall {
    font-size: x-small;
}