body {
    background-color: #5b7c3c;
    background-image:
        linear-gradient(rgba(91, 124, 60, 0.7), rgba(91, 124, 60, 0.7)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" fill="%234a6930"/><rect x="50" y="0" width="50" height="50" fill="%234a6930"/><rect x="0" y="50" width="50" height="50" fill="%234a6930"/><rect x="50" y="50" width="50" height="50" fill="%234a6930"/></svg>');
    font-family: 'Press Start 2P', cursive;
    color: white;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #8b8b8b;
    border: 8px solid #5a5a5a;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: containerAppear 1s ease-out;
}

@keyframes containerAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

h1 {
    text-align: center;
    color:#a8a8a8;
    text-shadow: 3px 3px 0 #000000;
    background-color: #3a3a3a;
    padding: 15px;
    border: 4px solid #5a5a5a;
    margin-bottom: 30px;
    animation: titleGlow 2s infinite alternate;
    text-shadow: 3px 3px 6px rgba(216, 189, 189, 0.5);
}
@keyframes titleGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    }
}

.advice-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.advice-item {
    background-color: #727272;
    border: 4px solid #5a5a5a;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-100%);
    margin-left: 30px;
}

.advice-item:nth-child(1) {
    animation-delay: 0.3s;
}

.advice-item:nth-child(2) {
    animation-delay: 0.6s;
}

.advice-item:nth-child(3) {
    animation-delay: 0.9s;
}

.advice-item:nth-child(4) {
    animation-delay: 1.2s;
}

.advice-item:nth-child(5) {
    animation-delay: 1.5s;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.advice-item::before {
    content: "⛏️";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}
.advice-item:hover::before {
    transform: translateY(-50%) scale(1.2) rotate(360deg);

}
.advice-item:hover {
    transform: scale(1.05);
    background-color: #828282;
    border-color: #6a6a6a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}

h4 {
    margin: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 10px;
    color: #ccc;
}


