body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f0f0; /* Light grey background */
}

.container {
    position: relative;
    height: 100%;
    text-align: center;
    color: #333;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    max-width: 600px;
}

h1 {
    color: #666;
    font-size: 3em;
}

p {
    color: #888;
}

.content:before {
    content: "\1F6A7"; /* Unicode for Construction Sign */
    font-size: 4em; /* Adjust size as needed */
    display: block;
    margin-bottom: 20px;
}
