* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    background: url("./Soon.svg") no-repeat center center/cover;
}
.overlay {
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    color: white;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    opacity: 0.9;
}
/* Mobile phones */
@media (max-width: 768px) {

    body {
        background-position: center top;
        background: url("./Mobile.svg") no-repeat center center/cover;
    }

    .overlay {
        padding: 20px;
    }

    .content {
        width: 100%;
    }

    .logo {
        width: 100px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Small phones */
@media (max-width: 480px) {

    h1 {
        font-size: 26px;
    }

    p {
        font-size: 14px;
    }

    .logo {
        width: 80px;
    }
}
/* Mobile phones */
@media (max-width: 768px) {

    body {
        background-position: center top;
    }

    .overlay {
        padding: 20px;
    }

    .content {
        width: 100%;
    }

    .logo {
        width: 100px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Small phones */
@media (max-width: 480px) {

    h1 {
        font-size: 26px;
    }

    p {
        font-size: 14px;
    }

    .logo {
        width: 80px;
    }
}

