body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

header h1 {
    color: #007bff; /* En modern blå färg */
    margin-bottom: 20px;
}

main {
    margin-bottom: 30px;
}

.construction-info h2 {
    color: #555;
    margin-bottom: 15px;
}

.construction-info p {
    line-height: 1.6;
    color: #777;
    margin-bottom: 25px;
}

.image-container {
    max-width: 100%;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
}

footer {
    color: #999;
    font-size: 0.9em;
}