* {margin: 0; padding: 0; box-sizing: border-box;}
body {
 font-family: Arial, sans-serif;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 min-height: 100vh;
 background: url('under-construction-bg.webp') no-repeat center center/cover;
 color: #333;
 text-align: center;
 padding: 20px;
}
h1 {margin: 0 0 20px 0;font-size: 2rem;}
h2 {margin: 0 0 15px 0; font-size: 1.5rem;}
p {padding: 10px 20px;}
img {max-width: 60%; height: auto; margin-bottom: 20px;}
a {color: #750b0b; text-decoration: none;}
a:hover {color: #e20f0f;}

@media (max-width: 1024px) {
img {max-width: 70%;}
}
@media (max-width: 768px) {
img {max-width: 90%;}
h1 {font-size: 1.8rem;}
h2 {font-size: 1.3rem;}
p {font-size: 0.9rem;}
}
@media (max-width: 480px) {
h1 {font-size: 1.5rem;}
h2 {font-size: 1.2rem;}
p {font-size: 0.8rem;}
img {max-width: 100%;}
}
