body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container{
    height:100dvh;
    width: 100dvw;
    background-image: url("../assets/Coming-soon-background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.filter {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
img{
    max-width: 100%;
    height: auto;
}
@media (max-width: 600px) {
    img{
        width: 80%;
        height: auto;
    }
}