body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: #8F997C;
    background: linear-gradient(173deg, rgba(143, 153, 124, 1) 0%, rgba(143, 153, 124, 1) 50%, rgba(242, 215, 187, 1) 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

img {
    width: 40%;
}

.container {
    max-width: 700px;
    padding: 40px;
    background: rgba(0,0,0,0.25);
    border-radius: 15px;
    backdrop-filter: blur(6px);
    animation: fadeIn 1.2s ease;
}
.imgcontainer {
    max-width: 700px;
    padding: 40px;
    padding-bottom: 0%;
    border-radius: 15px;
    backdrop-filter: blur(6px);
    animation: fadeIn 1.2s ease;
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.loader {
    border: 6px solid rgba(255,255,255,0.3);
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

.wheat-field {
display: flex;
justify-content: center;
gap: 8px;
flex-wrap: wrap;
font-size: 42px;
padding: 10px;
}

.wheat {
display: inline-block;
transform-origin: bottom center;
animation: sway 3s ease-in-out infinite;
}

.wheat:nth-child(odd)        { animation-delay: 0.2s; }
.wheat:nth-child(3n)         { animation-delay: 0.5s; }
.wheat:nth-child(4n)         { animation-delay: 0.8s; }
.wheat:nth-child(5n)         { animation-delay: 1.1s; }
.wheat:nth-child(7n)         { animation-delay: 1.4s; }
.wheat:nth-child(9n)         { animation-delay: 1.7s; }

@keyframes sway {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(5deg); }
    50%  { transform: rotate(-6deg); }
    75%  { transform: rotate(4deg); }
    100% { transform: rotate(0deg); }
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}