* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.content {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 1.5em;
    color: #333;
}

.construction-image {
    width:400px;
    height:auto;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }
}