* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background: #1A3E73;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background image with overlay */
.background-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: url('../assets/people-phones.jpg') center bottom / cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

/* Logo */
.logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo img {
    height: 80px;
    margin-top: 8%;
}

/* Bubble wrapper */
.bubble-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    z-index: 5;
    margin-top: 80px;
}

/* Bubble graphic */
.bubble-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

/* Thank you content on top */
.maintenance-content {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 25;
    /* text-align: center; */
    width: 100%;
    max-width: 400px;
}

.maintenance-title {
    color: white;
    font-size: 35px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
    left: 30%;
    letter-spacing: -0.5px;
}

.maintenance-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 300;
    left: 30%;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .maintenance-content{
        width: 95%;
    }
    .bubble-wrapper {
        width: 350px;
        height: 350px;
        margin-top: 120px;
    }

    .maintenance-title {
        font-size: 32px;
    }

    .maintenance-subtitle {
        font-size: 14px;
    }

    .logo img {
        height: 70px;
        /* margin-top: 20px; */
    }
}

@media (max-width: 480px) {
    .bubble-wrapper {
        width: 300px;
        height: 300px;
        margin-top: 80px;
    }

    .maintenance-content {
        left: 45%;
        width: 90%;
    }

    .maintenance-title {
        font-size: 25px;
    }

    .maintenance-subtitle {
        font-size: 13px;
    }

    .logo img {
        height: 70px;
        /* margin-top: 10px; */
    }
}

@media (max-width: 325px) {
    .bubble-wrapper {
        width: 300px;
        height: 300px;
        margin-top: 80px;
    }

    .maintenance-content {
        left: 45%;
        max-width: 260px;
    }

    .maintenance-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .maintenance-subtitle {
        font-size: 13px;
    }
    
    .logo img {
        height: 70px;
        /* margin-top: 10px; */
    }

}
