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

body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #f8e6d2;
}

.full-screen-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.coming-soon-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background-image 0.3s ease-in-out;
}

/* Desktop Version */
@media (min-width: 1025px) {
    .coming-soon-image {
        background-image: url('IMG_4965.PNG');
    }
}

/* Tablet & Mobile Version */
@media (max-width: 1024px) {
    .coming-soon-image {
        background-image: url('IMG_4966.PNG');
    }
}