@charset "utf-8";
/* CSS Document */

@import url("https://fonts.julis.de/Anybody/common.css");

/*
yellow: FDE317
magenta: E1007A
*/

body {
    margin: 0;
    font-family: 'Anybody', serif;
    font-size: 14px;
    line-height: 18px;
    color: #333333;
    padding: 0;
    background-color: #FFFFFF;
    background-image: url('/static/background.png');
    background-size: cover; /* Deckt den gesamten Hintergrund ab */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Verhindert die Wiederholung des Bildes */
    background-attachment: fixed; /* Hintergrund bleibt statisch */
}

h1 {
    display: block;
    text-align: center;
    position: relative;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 10px 10px;
    color: #E5007D;
    font-size: 3em;
    line-height: 1em;
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
}

box {
    border-radius: .875rem;
    display: block;
    margin: 0 auto 30px auto;
    padding: 10px;
    position: relative;
    text-align: center;
    height: auto;
    min-height: 1.5rem;
    padding: 1.2rem;
    width: 23%;
    line-height: 1em;
    background-color: #f5b5d2;
    color: #E5007D;
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

h2 {
    display: block;
    text-align: center;
    position: relative;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 10px 10px;
    color: #E5007D;
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
}

h3 {
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
}

h4 {
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
}

#wrapper {
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
    width: 100%;
    max-width: 1200px;
}

#container {
    margin-bottom: 30px;
}

#footer {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.btn a {
    display: inline-block;
    padding: 10px;
    background-color: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0.9;
}

.btn a:hover {
    opacity: 1;
}

.btn.left {
    display: inline-block;
    padding-right: 60px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.btn.right {
    display: inline-block;
    margin-left: 56px;
}

@media (max-width: 768px) {
    body {
        padding: 0;
        font-size: 12px;	
    }

    h1 {
        margin-bottom: 15px;
        font-size: 20px;
    }

    box {
        font-size: 20px;
        width: 65%;
        padding: 1rem;
    }

    #container {
        margin-bottom: 0;
    }

    .btn.left {
        margin-right: 0;
        margin-bottom: 15px;
        padding: 0;
        border: 0;
        width: 100%;
        clear: both;
    }

    .btn.right {
        margin-left: 0;
        margin-bottom: 15px;
        padding: 0;
        clear: both;
    }

    .btn img {
        width: 100%;
    }

    #footer {
        padding-top: 15px;
        width: 100%;
    }
}

/* Grundlegende Stile für das Logo */
.logo-container {
    text-align: center; /* Zentriert das Logo horizontal */
    padding: 10px; /* Platz um das Logo herum */
}

/* Logo Styles */
.logo {
    max-width: 100%; /* Ensures the logo does not exceed the container width */
    height: auto; /* Maintains aspect ratio */
    width: 300px; /* Set the desired width */
    /* Optionally add margin for better positioning */
    margin: 10px auto;
    display: block; /* Centers the image horizontally */
}

/* Stile für größere Bildschirme */
@media (min-width: 768px) {
    .logo {
        max-width: 300px; /* Maximale Breite des Logos auf größeren Bildschirmen */
    }
}

/* Stile für kleinere Bildschirme */
@media (max-width: 768px) {
    .logo {
        max-width: 200px; /* Kleinere maximale Breite des Logos auf mobilen Geräten */
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px; /* Noch kleinere maximale Breite des Logos auf sehr kleinen Bildschirmen */
    }
}

a {
    color: #000;
    text-decoration: underline;
}