/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    
    overflow: hidden;

    background-color: #4a4a4a; /* Lighter gray background */
    background-image: radial-gradient(circle, #5a5a5a, #4a4a4a); /* Gradient for a more dynamic look */
    color: white; /* Optional: Set text color to white for better contrast */
    background: #4a4a4a url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white"/><circle cx="50" cy="20" r="1" fill="white"/><circle cx="90" cy="30" r="1" fill="white"/><circle cx="30" cy="50" r="1" fill="white"/><circle cx="70" cy="60" r="1" fill="white"/><circle cx="20" cy="70" r="1" fill="white"/><circle cx="80" cy="80" r="1" fill="white"/><circle cx="40" cy="90" r="1" fill="white"/></svg>') repeat;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-align: center;
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.field {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.windmill {
    width: 100px;
    height: 200px;
    background: url('../images/windmill.png') no-repeat center center;
    background-size: contain;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
ent: space-around;
    padding: 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.5);
}

.main-content {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.field {
    width: 100%;
    height: 100%;
    background: url('../images/windmill.png') no-repeat center center;
    background-size: contain;
    animation: roll 10s linear infinite;
}

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

.windmill {
    position: absolute;
    width: 100px;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

section#windmill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 200px;
    background: url('../images/windmill.png') no-repeat center center;
    background-size: contain;
    animation: spin 5s linear infinite;
}

#windmill {

    padding: 20px; /* Optional: Add some padding */
    border-radius: 10px; /* Optional: Add rounded corners */
  }
  