* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* height: 100%;
    width: 100%; */
    box-sizing: border-box;
    /* margin-top: 300px; */
}

.alert-box {
    background: #ffffff;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    max-width: 900px;
    width: 100%;
    text-align: left;
    line-height: 1.6;
    transition: transform 0.3s ease-in-out;
    position: relative;
    overflow: hidden;  /* Zabezpieczenie przed ucinaniem treści */
    margin-top: 100px;
}

.alert-box:hover {
    transform: translateY(-10px);
}

h1 {
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 1.4rem;
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    font-size: 1.1rem;
    color: #555;
}

ul li::marker {
    color: #e74c3c;
}

.footer {
    text-align: center;
    font-size: 1rem;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

.alert-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(231, 76, 60, 0.08);
    border-radius: 15px;
    z-index: -1;
}

/* Media Queries dla urządzeń mobilnych */
@media screen and (max-width: 768px) {
    .alert-box {
        padding: 20px 15px; /* Mniejszy padding dla urządzeń mobilnych */
        max-width: 90%; /* Zmniejszenie szerokości */
    }

    h1 {
        font-size: 1.8rem; /* Mniejsza czcionka na mobilkach */
    }

    h2 {
        font-size: 1.2rem; /* Mniejsza czcionka na mobilkach */
    }

    p, li {
        font-size: 1rem; /* Mniejsza czcionka na mobilkach */
    }

    .container {
        padding: 10px; /* Zmniejszenie paddingu na mobilkach */
    }
}
