Under Construction
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #e09, #d0e); /* Gradient background */
font-family: 'Arial', sans-serif;
color: #fff;
}
.construction-container {
text-align: center;
padding: 40px;
background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background for content */
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
max-width: 80%;
margin: 0 20px;
}
h1 {
font-size: 3em;
margin-bottom: 0.5em;
color: #ffeb3b;
}
p {
font-size: 1.2em;
color: #fff;
}
@media (max-width: 768px) {
h1 {
font-size: 2.5em;
}
p {
font-size: 1em;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2em;
}
p {
font-size: 0.9em;
}
}
Under Construction
Our website is currently under construction. Stay tuned for something amazing!