/* Reset basic styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

/* Main content box */
.container {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    width: 85%;
    margin: auto; /* Pushes footer to the bottom */
}

/* Wrench Icon with animation */
.icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    animation: wrench 2.5s infinite ease-in-out;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0; 
}

/* Footer styling */
footer {
    width: 100%;
    padding: 20px 0;
    background-color: #2c3e50;
    color: white;
    margin-top: 20px;
}

footer p {
    margin: 0;
    color: #ecf0f1;
    font-size: 0.95em;
}

/* Keyframe animation for the tool icon */
@keyframes wrench {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}