.cloud-effect-wrapper{
    width: 100%;
    height: 100vh;
}

.cloud-effect-header{
    background-image: url('./images/forestBG.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 60%;
    position: relative;
}
.cloud-effect-header h2{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 99;
    color: white;
}
.cloud-effect-animation{
    overflow: hidden;
}
.cloud-effect-animation img{
    animation: cloud-float calc(20s + (var(--i) * 10s)) linear infinite;
    opacity: .6;
    max-width: 100%;
    position: absolute;
    bottom: 0px;
    width: 100%; 
    height: auto; 
    left: 0; 
    z-index: 1;
}
@keyframes cloud-float{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}

.cloud-effect-content{
    width: 50%;
    margin: 20px auto;
}
.cloud-effect-content h4{
   text-align: center;
   color: gray;
   font-size: 18px;
   padding-top: 20px;
}
.cloud-effect-content p{
    
    color: rgb(151, 151, 151);
    font-size: 14px;
    line-height: 25px;
    padding-top: 20px;
 }

.cloud-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(40, 40, 40, 0.7);
    z-index: 2;
}
