/* Dark Mode Theme */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #fff;
    flex-direction: column;
    padding: 20px;
}

/* Container Styling */
.container {
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 90%;
}

/* Headings & Text */
h1 {
    font-size: 2.2rem;
}
p {
    font-size: 1.2rem;
}

/* Link Button */
a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
a:hover {
    background: #0056b3;
}

/* SVG Image */
.construction-icon {
    width: 100px;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
    .construction-icon {
        width: 80px;
    }
}
