@charset "utf-8";
/* -------------------- reset */
/* ------------- default */
*, *:before, *:after {box-sizing: border-box;}
body {
  ont-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  }

.maintenance-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 80%;
  }

h1 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
  }

p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.4;
  }
  
img{
  max-width: 100%;
  height: auto;
  }


@media (max-width: 768px) {
 .maintenance-container {
  max-width: 90%;
  }

p {
  font-size: 1.0em;
  color: #555;
  line-height: 1.4;
  }

 }