html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url('your-image.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* Keeps image fixed during scroll */
    background-size: cover;

    /* Crucial: scales image to cover */
}

.logo-coming-soon {
    max-width: 70%;
}

.coming-soon-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-variant: small-caps;
    font-weight: 500;
    letter-spacing: clamp(0rem, 1vw, 0.25rem);
    font-size: clamp(1rem, 6vw, 2rem);
}

.glow-image {
    filter: drop-shadow(0 0 10px #000000);
}

.glow-text {
    text-shadow: 0 0 10px #000000,
                 0 0 10px #000000,
                 0 0 20px #000000,
                 0 0 20px #000000,
                 0 0 30px #000000,
                 0 0 30px #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.social {
    margin: 1rem;
    max-width: 2rem;
}

p {
    padding-left: 7px;
}