@font-face {
    font-family: 'Baumans';
    src: url('../fonts/static/Fredoka-Regular.ttf') format('truetype');
}

body.maintanence {
    font-family: 'Baumans', sans-serif;
    color: #3b3f5c;
    font-size: 0.875rem;
    background: linear-gradient(to bottom, #fbc2eb 0%, #a6c1ee 100%);
    height: 100%;
    margin: 0;
}

.maintanence-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    min-height: 100vh;
    max-width: 1000px;
    margin: auto;
}

.error-title {
    font-size: 54px;
    font-weight: 600;
    margin: 65px 0 5px;
}

.error-text {
    font-size: 26px;
    margin: 40px 0 0;
    padding: 18px 28px;
    border-radius: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
    display: inline-block;
}

.text {
    font-size: 20px;
    margin-top: 21px;
    padding: 14px 24px;
    border-radius: 12px;
    display: inline-block;
    line-height: 1.5;
}

a.btn {
    display: inline-block;
    width: 160px;
    padding: 12px 0;
    font-size: 18px;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    color: #222;
    background: linear-gradient(90deg, #a8edea 0%, #fed6e3 100%);
    margin-top: 32px;
    box-shadow: 0 6px 24px rgba(80, 102, 144, 0.15);
    transition: all 0.2s ease;
    text-decoration: none;
}

a.btn:hover {
    background: linear-gradient(90deg, #fed6e3 0%, #a8edea 100%);
    color: #111;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 32px rgba(80, 102, 144, 0.18);
}