body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-image: linear-gradient(45deg, #737884 33.33%, #949aaa 33.33%, #b5bcd0 66.66%, #d6def6 66.66%);
    background-size: 200% 200%;
    animation: backgroundAnimation 20s linear infinite alternate;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

h1 {
    color: #0099ff;
    font-size: 28px;
    margin-bottom: 10px; /* zmienione na mniejszą wartość */
    transition: color 0.3s ease;
}

p {
    margin-bottom: 30px; /* dodane, aby oddzielić nagłówek od tekstu */
}

.item-selection {
    margin: 20px auto; /* zmienione na auto, aby wyśrodkować */
    max-width: 300px; /* dodane ograniczenie szerokości */
    display: flex;
    flex-direction: column; /* zmieniono kierunek flexbox na kolumnę */
    align-items: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.item-selection:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

.item-selection label {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease, transform 0.2s ease;
}

.item-selection label span {
    color: #ff6600;
}

#item,
#packs {
    margin-bottom: 10px; /* dodane, aby oddzielić pola od etykiet */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, transform 0.2s ease;
    width: 100%; /* dodane, aby rozciągnąć pola wejściowe na pełną szerokość */
    box-sizing: border-box; /* dodane, aby szerokość uwzględniała padding i border */
}

#item:focus,
#packs:focus {
    border-color: #3498db;
    transform: scale(1.05);
}

.required-materials {
    margin: 0 auto; /* Wyśrodkowanie sekcji */
    max-width: 600px; /* Ograniczenie szerokości */
}
