
@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&family=Oswald:wght@200..700&family=Oxygen:wght@300;400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cantarell", sans-serif;
    background: #fafafc;
}

div img {
    margin: 16px;
    width: 104px;
    height: 32px;
}

.maintenance {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafc;
}

.background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}


.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
}

.blob1 {
    width: 480px;
    height: 480px;
    top: -150px;
    left: -150px;
    background: #e800e8 transparent;
}

.blob2 {
    width: 600px;
    height: 600px;
    bottom: -180px;
    right: -180px;
    background: #435cff transparent;
}

.blob3 {
    width: 520px;
    height: 520px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
}


.content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 20px;
    text-align: center;
}

.logo {
    margin-bottom: 70px;
    font-size: 3.4rem;
    font-weight: 700;
    color: #1f1f1f;
    letter-spacing: -2px;
}

h2 {
    font-family: 'Oswald', sans-serif;
    color: #1f1f1f;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-top: 25px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
}

.email {
    display: inline-block;
    margin-top: 28px;
    color: #e800e8;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.email:hover {
    color: #b800b8;
}




@media (max-width: 768px) {

    .logo {
        font-size: 2.6rem;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .blob {
        filter: blur(100px);
    }
}