:root {
    --white:#ffffff;
    --gray:#f2f2f2;
    --black:#212121;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--gray);
}
main{
    background-color: var(--white);
}
header {
    background-color: var(--gray);
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 100px;
    height: auto;
}

main {
    text-align: center;
    padding: 100px 20px; /* Adjusted padding for responsiveness */
}

.work-in-progress h1 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 20px;
}

.work-in-progress p {
    font-size: 18px;
    color: var(--black);
    max-width: 600px;
    margin: 0 auto;
}

footer {
    background-color: var(--gray);
    text-align: center;
    padding: 20px;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 14px;
    color: var(--black);
}

/* Tablet Styles */
@media screen and (max-width: 768px) {
    main {
        padding: 80px 20px; /* Adjusted padding for tablet devices */
    }
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
    header {
        padding: 10px; /* Reduced padding for header on mobile devices */
    }
    
    .logo img {
        max-width: 80px; /* Smaller logo size on mobile devices */
    }

    main {
        padding: 60px 20px; /* Adjusted padding for mobile devices */
    }

    .work-in-progress h1 {
        font-size: 28px; /* Smaller font size for h1 on mobile devices */
        margin-bottom: 10px;
    }

    .work-in-progress p {
        font-size: 16px; /* Smaller font size for p on mobile devices */
    }

    footer {
        padding: 10px; /* Reduced padding for footer on mobile devices */
    }
}
