@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    font-family: "Mulish", sans-serif;
}


a {
    text-decoration: none !important;
}

body {
    background: linear-gradient(to right, #f2f4f7, #d7e1ec);
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.under-dev {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.under-dev img.logo {
    width: 310px;
    margin-bottom: 20px;
}

.under-dev h1 {
    font-size: 30px;
    font-weight: 700;
    color: #663333;
}

.under-dev p {
    color: #555;
    margin-top: 10px;
}

.gear-icon {
    font-size: 40px;
    color: #96b23b;
    animation: spin 2s linear infinite;
    margin-top: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.social-icons a {
    color: #555;
    margin: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #007bff;
    transform: scale(1.2);
}

@media (max-width: 576px) {
    .under-dev h1 {
        font-size: 1.5rem;
    }

    .gear-icon {
        font-size: 30px;
    }
}




@media (max-width: 767px) {

    .under-dev img.logo {
        width: 195px;
        margin-bottom: 20px;
    }


    .under-dev {
        background: white;
        padding: 40px 10px;
        border-radius: 20px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        max-width: 620px;
        width: 100%;
    }


}