@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.banner
{
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(pictures/bg.jpg);
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
}
.banner #text{
    position: relative;
    font-size: 12em;
    color: #fff;
}
.banner .clouds{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.banner .clouds img{
    position: absolute;
    bottom: 0;
    max-width: 100%;
    animation: animate calc(3s * var(--i)) linear infinite;
}
@keyframes animate{
    0%{
        transform: scale(1);
    }
    25%,75%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: scale(3);
    }
}
section{
    position: relative;
    padding: 75px 100px;
}
section h2{
    position: relative;
    font-size: 2.5em;
    margin-bottom: 20px;
}
















