body{
    margin: 0;
    padding: 0;
}

.coming-soon-background{
    height: 100%;
    width: 100%;
    background-image: url("../images/achtergrond.png");
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    position: fixed;
}
    @keyframes fadeInFromTopAnimation {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInFromBottomAnimation {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .coming-soon-background .trees, 
    .coming-soon-background .announcement{
        height: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        position: fixed;
        opacity: 0;
        transform: translateY(0);
    }

    .coming-soon-background .announcement{
        animation: fadeInFromTopAnimation 2.2s ease-out;
        animation-delay: 0.3s;
        animation-fill-mode: forwards;
    }

    .coming-soon-background .trees{
        animation: fadeInFromBottomAnimation 2.2s ease-out;
        animation-delay: 0.7s;
        animation-fill-mode: forwards;
    }
    
        .coming-soon-background .trees img{
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }
        .coming-soon-background .announcement img,
        .coming-soon-background .announcement object
        {
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }

@media only screen and (max-width: 550px) {
    .coming-soon-background .announcement{
        width: 200%;
        height: 100%;
        padding: 0;
        margin: 0;
        left: -50%;
    }
    .coming-soon-background .trees{
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        bottom: 25%;
    }
}
@media only screen and (max-width: 300px) {
    .coming-soon-background .trees{
        width: 150%;
        height: 150%;
        padding: 0;
        margin: 0;
        top: -50%;
        left: -49%;
        overflow: visible;
    }
}