body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    min-height: 100vh; 
    align-items: center;
    text-align: center;
}

.neko img{
    width: 100px;
    margin-bottom: -30px;
}

.logo img{
    width: 500px;
    max-width: 100%;
}

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

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

h3, h4 {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

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