html, body {
    width: 100vw;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/img/background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.img-center{
    position: relative;

    width: 500px;
    height: 325px;
    max-width: 90vw;

    box-sizing: content-box;

    padding: 8rem 4rem;
    background: url(assets/img/video-bg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    width: 200px;
    height: 150px;
    margin: 1rem;
    object-fit: contain;
}

.logo .logo-1 {
    height: 80px;
}



@keyframes fade-in-top {
	0% { opacity: 0; transform: translateY(-100%); }
	100% { opacity: 1; transform: translateY(0); }
}

.boule {
	object-position: bottom center;
    object-fit: cover;
    position: absolute;
	top: 0;
    z-index: 1;
    display: none;
    width: 100px;
	
	filter: drop-shadow(0 20px 30px #00000020);
	animation: fade-in-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.boule-1 {
    left: 25%;
	
	animation-delay: calc(0.1s * 1);
}
.boule-2 {
    left: 35%;
	top: -20%;
	
	animation-delay: calc(0.1s * 2);
}
.boule-3 {
    left: 55%;
	
	animation-delay: calc(0.1s * 3);
}
.boule-4 {
    left: 70%;
	
	animation-delay: calc(0.1s * 4);
}

@media(min-width: 1200px) {
    .logo .logo-1 {
        position: absolute;
        width: 320px;
        height: 250px;
        left: calc(10vw - 50px);
        top: calc(50% - (250px / 2));
    }
    .logo .logo-2 {
        position: absolute;
        height: 150px;
        right: 10vw;
        bottom: calc(50% - (150px / 2));
    }

    .img-center {
        width: 700px;
        height: 425px;
    }
	
	.boule {
		display: block;
	}
}
