body{
    margin: 0px;
    padding: 0px;
    list-style: none;
    user-select: none;        /* Modern browsers */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;    /* IE/Edge */
}
.ads{
    display: grid;
    place-items: center;
    background-color: #ffffff;
}
.ads h3{
    margin: 0px;
    text-align: center;
}
.ads .adBox{
    text-align: center;
    padding: 10px 0px;
    box-sizing: border-box;
}
.ads .adBox .adImage{
    width: 60%;
    height: auto;
    box-shadow: 0 0 20px rgb(231, 184, 231);
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes blink {
    100% {
        box-shadow: 0 0 20px rgb(235, 213, 91);
    }
}
.ads .adBox video{
    height: 100%;
    width: 100%;
}
.ads h3{
    text-align: center;
    text-transform: uppercase;
    font-family: 'Times New Roman', Times, serif;
    color: #363636;
}
@media (max-width: 700px) {
    .ads .adBox .adImage {
        width: 95%;
    }
}