body {
    background-image: url(./assets/img/bg.jpg);
}

#CookieFiles {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#CookieFiles article {
    margin: 10px 0px 50px 0px;
}

#CookieFiles article span {
    font-size: 35px;
}

#CookieFiles p {
    margin: 30px auto;
    font-size: 22px;
    text-align: center;
    max-width: 700px;
    position: relative;
}

#CookieFiles p img {
    width: 100px;
    height: 100px;
    position: absolute;
    right: -100px;
    top: -100px;
}


.textt {
    display: flex;
    justify-content: center;
}

.textt > p {
    font-size: 50px;
    margin: 20px;
    padding: 10px;
}



@media screen and (max-width: 992px) {

   #CookieFiles p img {
       width: 100px;
       height: 100px;
       position: absolute;
       right: 70px;
       top: 20px;
       opacity: 0.2;
   }

   #CookieFiles > article {
       padding: 50px;
   }

}