/* Dark Mode Styling */

@font-face {
    font-family: Main-Font;
    src: url("https://erikoellers.de/stylesheet/Oswald-VariableFont_wght.ttf");
}
body {

    background: url("https://erikoellers.de/img/background.png");
    color: white;
    font-family: Main-Font;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

header {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
}

#Warningcontainer {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    text-align: center;
}

#warn1, #warn2 {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #252525;
    border-left: 5px solid #ffffff;
    border-radius: 5px;
}

#wannaenter {
    margin-top: 15px;
    font-size: 1.2rem;
    color: white;
}

#wannaenterbtn {
    background-color: #313131;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#wannaenterbtn:hover {
    background-color: #818181;
}
