@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
    font-family: "Arial";
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titel_unterlinie {
    width: 40%;
    border: 0;
    height: 4px;
    background-color: #A52A2A;
    margin-top: -20px;
    opacity: 0;
    animation: fadeIn 1.3s ease 0.3s forwards;
}

.Untere_text {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-top: 2px;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

h1 {
    font-size: 40px;
    color: #A52A2A;
    text-align: center;
    margin-top: 20px;
    animation: fadeIn 1.3s ease 0.3s forwards;
    opacity: 0;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    animation: fadeIn 1.5s ease 0.6s forwards;
    opacity: 0;
}

.box {
    width: 100%;
    padding: 0;
    margin: 70px 0;
    opacity: 1;
}

.box h2 {
    font-size: 24px;
    color: #A52A2A;
    text-align: left;
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.box p, .box ul, .box li {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.box ul {
    padding-left: 20px;
}

.box li {
    margin-bottom: 10px;
}

strong {
    color: #A52A2A;
}


.link-top-left {
    position: absolute;
    top: 20px; 
    left: 20px; 
    opacity: 0;
    animation: fadeIn 1.3s ease 0.3s forwards;
}

.link-bottom-center {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px; 
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

.zurueck-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #A52A2A; 
    color: white; 
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px; 
    transition: background-color 0.3s, transform 0.3s; 
}

.zurueck-link:hover {
    background-color: #A52A2A; 
    transform: translateY(-2px); 
    cursor: pointer;
}


@media (max-width: 480px) {
    h1 {
        font-size: 24px; 
        margin-top: 2px;
    }
    .link-top-left {
        top: 5px; 
        left: 5px;
    }
    .zurueck-link {
        font-size: 12px;
        padding: 4px 8px; 
    }
}