<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Сайт в разработке</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}
.container {
max-width: 800px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
p {
font-size: 1.5rem;
margin-bottom: 30px;
line-height: 1.6;
}
.construction-icon {
font-size: 5rem;
margin-bottom: 30px;
animation: pulse 2s infinite;
}
.progress-container {
width: 100%;
height: 20px;
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
margin: 30px 0;
overflow: hidden;
}
.progress-bar {
height: 100%;
width: 65%;
background: linear-gradient(90deg, #ff8a00, #e52e71);
border-radius: 10px;
animation: progress-animation 3s infinite;
}
.contact {
margin-top: 30px;
font-size: 1.2rem;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
@keyframes progress-animation {
0% { width: 65%; }
50% { width: 70%; }
100% { width: 65%; }
}
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
p { font-size: 1.2rem; }
.construction-icon { font-size: 4rem; }
}
</style>
</head>
<body>
<div class="container">
<div class="construction-icon"></div>
<h1>Сайт находится в разработке</h1>
<p>Мы усердно работаем над созданием чего-то удивительного для вас.</p>
<div class="progress-container">
<div class="progress-bar"></div>
</div>
<p>Пожалуйста, зайдите позже.</p>
<div class="contact"></div>
</div>
</body>
</html>