*{
    margin:0;
    padding:0;overflow:hidden;
}
.title{
    top:0;left:0;
    color:rgb(255, 255, 255); margin-left:20%; margin-top:25%;
    position: fixed; height: max-content; font-family:Georgia, 'Times New Roman', Times, serif
}
.btn{
    text-decoration: none;
    padding:0.5rem 1rem;
    color:white ;
    font-size: 14px;
    font-weight: bold;
    cursor:pointer;
    border:2px solid white;
    width:120px; margin-top:100px;; 
    height:2.9rem; padding:5px; background: #3a3a3a
}.btn:hover{
    background: rgba(255, 255, 255, 0.315);
}.btn:active{
    background: rgba(255, 255, 255, 0.712);
}
.slowFade {
    display: flex; 
    align-items: flex-start;
    background: #fff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.slowFade .slide img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    background: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0;
    transform: scale(1.5) rotate(15deg);
    -webkit-animation: slowFade 32s infinite;
            animation: slowFade 32s infinite;
}
.slowFade .slide:nth-child(3) img {
    -webkit-animation-delay: 8s;
            animation-delay: 8s;
}
.slowFade .slide:nth-child(2) img {
    -webkit-animation-delay: 16s;
            animation-delay: 16s;
}
.slowFade .slide:nth-child(1) img {
    -webkit-animation-delay: 24s;
            animation-delay: 24s;
}
@keyframes slowFade {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
    40% {
        opacity: 0;
    }
}

@-webkit-keyframes slowFade {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
    40% {
        opacity: 0;
    }
}