body {
    margin: 0;
    overflow: hidden;
}
.flex{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.img{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.fixed{
    position: fixed;
}
.fullSize{
    width: 100%;
    height: 100%;
}
.center{
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
div{
    pointer-events: none;
}
.events{
    pointer-events: auto;
}
* {
    -webkit-tap-highlight-color: transparent;
}
.blink{
    animation:blink 1.5s ease-in-out infinite;
}
.mink{
    animation:mink 1s ease-in-out infinite;
}
@keyframes blink {
    0%{ opacity: 1; transform: scale(1); }
    50%{ opacity: 1; transform: scale(1.3); }
    100%{ opacity: 1; transform: scale(1);  }
}
@keyframes mink {
    0%{ opacity: 1; transform: translateY(0) }
    50%{ opacity: 1; transform: translateY(15%) }
    100%{ opacity: 1; transform: translateY(0) }
}
@media screen and (orientation:landscape) {
    #advert{
        display:none;
    }
}