*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;  
   
}
body{
    overflow-x: hidden;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
}

section{
    height: 100vh;
    
}
.title{
    z-index: 2;
    color: black;
    position: absolute;
    top: -6%;
    font-weight: bolder;
    font-size: xx-large;
}
.author{
    z-index: 2;
    color: black;
    position: absolute;
    bottom: -5%;
    right: 0%;
    font-weight: bolder;
    font-size: larger;
    transition: transform 0.5s;

    &:hover{
        transform: scale(1.2) translateX(-10px);
        text-decoration: underline;
    }
}
.frame{
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    border: solid white 50px;
    /* z-index: 5; */
    z-index: 1;
    position: relative;
    position: fixed;
    
}

.font_change:hover {
    animation: font_change 2s linear 0s infinite forwards;
}


@keyframes font_change {
    10% {
        font-family: 'Courier New', Courier, monospace;
        font-weight: 600;
        color: black;
    }

    20% {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: 500;
        color: rgb(34, 30, 30);
    }

    30% {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: 900;
        color: rgb(70, 62, 62);
    }

    40% {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: bold;
        color: rgb(65, 50, 50);
    }

    50% {
        font-family: 'Times New Roman', Times, serif;
        font-weight: 100;
        color: rgb(133, 96, 96);
    }

    60% {
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
        font-weight: bold;
        color: rgb(129, 77, 77);
    }

    70% {
        font-family: cursive;
        font-weight: bolder;
        color: rgb(80, 27, 27);
    }

    80% {
        font-family: monospace;
        font-weight: 700;
        color: rgb(41, 6, 6);
    }

    90% {
        font-family: sans-serif;
        font-weight: bolder;
        color: rgb(51, 3, 3);
    }

    100% {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: normal;
        color: rgb(0, 0, 0);
    }
}

.img1{
    background-image: url(1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: brightness(0);

}
h1{
    color: white;
    font-size: 17.5vw;
    padding: 5% 5%;
    opacity: 0.9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border: solid;
    transition: opacity 5ms;
    
}

h1:hover{
    opacity: 0.5;
    
}
   


.img2 {
    background-image: url(2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* z-index: 1; */
}
.img3 {
    background-image: url(3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* z-index: 2; */
}
.img4 {
    background-image: url(4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* z-index: 3; */
}
.img5{
    background-image: url(5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* z-index: 4; */
}

.img{
    position: sticky;
    top: 0%;
}