/* Basic reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('no_padding.png'); /* Background image */
    background-repeat: repeat;
    background-size: auto 100px;
}

/* Centered text container with wider white border effect */
.coming-soon {
    font-size: 5em; /* Adjust the size of the text */
    color: #155263; /* Text color */
    font-weight: bold;
    text-align: center;
    text-shadow:
        16px 16px 0px white, /* Right and down */
        -16px -16px 0px white, /* Left and up */
        16px -16px 0px white, /* Right and up */
        -16px 16px 0px white, /* Left and down */
        0px 16px 0px white,  /* Bottom */
        0px -16px 0px white, /* Top */
        16px 0px 0px white,  /* Right */
        -16px 0px 0px white, /* Left */
        24px 24px 0px white, /* Right and down (extra layer) */
        -24px -24px 0px white, /* Left and up (extra layer) */
        24px -24px 0px white, /* Right and up (extra layer) */
        -24px 24px 0px white, /* Left and down (extra layer) */
        0px 24px 0px white,  /* Bottom (extra layer) */
        0px -24px 0px white, /* Top (extra layer) */
        24px 0px 0px white,  /* Right (extra layer) */
        -24px 0px 0px white; /* Left (extra layer) */
}
