* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Mobile - up to 1023px */
@media (max-width: 1023px) {
    .coming-soon-container {
        background-image: url('./images/pat_mobile_fr.jpg');
    }
}

/* Desktop - 1024px and above */
@media (min-width: 1024px) {
    .coming-soon-container {
        background-image: url('./images/pat_desktop_fr.jpg');
    }
}
