html{
    background-image: url('../imgs/backround01.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: slide 20s infinite;
}

h1{
    font-size: 9vw;
    font-family: 'American Typewriter', serif;
    font-weight: 400;
    margin-left: 5%;
    margin-top: 2%;
    color: rgb(241, 241, 241);
}

@keyframes slide {
    0%{background-image: url(../imgs/backround01.webp);}
    20%{background-image: url(../imgs/backround02.webp);}
    40%{background-image: url(../imgs/backround03.webp);}
    60%{background-image: url(../imgs/backround04.webp);}
    80%{background-image: url(../imgs/backround05.webp);}
    100%{background-image: url(../imgs/backround06.webp);}
}

.navigation{
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 2%;
    margin-left: 5%;

}

.button{
    background-color: black;
    border-color: transparent;
    color: rgb(223, 223, 223);
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
    margin-right: 36vw;
}

.button:hover{
    color: rgb(13, 13, 13);
    background-color: transparent;
    border-color: black;
}

.btn{
    background-color: black;
    border-color: transparent;
    color: rgb(223, 223, 223);
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
}

.btn:hover{
    color: rgb(13, 13, 13);
    background-color: transparent;
    border-color: 1px black;
}

.text{
    position: absolute;
    right: 5%;
    top: 2%;
    font-size: 12px;
    color: rgb(79, 79, 79);
}

p a{
    color: black;
text-decoration: none;
}

p a:hover{
    text-decoration: underline;
}

@media (max-width:768px){

    html{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        }
    
    /* TITLE */
    
    h1{
    font-size:14vw;
    margin-top:8%;
    }
    
    
    /* NAVIGATION STACK */
    
    .navigation{
    flex-direction:column;
    gap:14px;
    
    bottom:5%;
    left:5%;
    }
    
    
    /* BUTTON SIZE */
    
    .button,
    .btn{
    font-size:16px;
    padding:8px 14px;
    }
    
    
    /* TOP TEXT */
    
    .text{
    font-size:12px;
    right:5%;
    top:13%;
    }
    
    }