* {
    margin: 0;
    padding: 0;
}
html {
   height: 100%; 
} 

body {
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;

}

header { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;



}

section {
    visibility: hidden;
    width: 0%;
    height: 0%;
    z-index: 1;
    background: rgba(red, green, rgba(87, 87, 204, 0), 1);
}

#home {
    width: 0px;
    height: 0px;
}

#Portfolio {
 
}

#PortfolioFrame {
    margin-top: 10px;


}
#AboutMe {
  
    z-index: -1;

}

#AboutMeFrame {

    z-index: 1;
}

#aboutMePic {
    width: 100%; 
  
}


#Contact {
 
}

nav {
    height: 90px;
    width: 100%;
    background-color: rgb(10, 1, 19);
    box-shadow: 0px, 2px, 4px rgba(0,0,0,0.144);
}

nav ul {
    float: center;
    text-align: center;
}

nav li {
    display: inline-block;
    margin-top: 30px;
    margin-right: 40px;
}

nav li a  {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: white;
    text-decoration: none;

}

nav ul li :hover {
    color: #7C1EE6;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    font-size: 1000px;

}




.container {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;

}

.content h1 {
    font-size: 95px;
    color: white;
    margin-bottom: 50px;
}

.content p {
    font-size: 60px;
    color: white;
    text-decoration: none;
    border: 2px solid white;
}

.content p:hover {
    background-color: white;
    color: white
}

.backgroundVideo {
    position: absolute;
    right:0;
    bottom: 0;
    z-index: -1;
}

#textOverVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}
.AboutMeBackground {
     width: 100%;
     height: 120vh;
     background-image: url('aboutMe.jpg');
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
     z-index: 3;

}

.background-skill {
    width: 100%;
    height: 120vh;
    background-image: url('backgroundimage.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 3;

}


.ContactBackground {
    width: 100%;
    height: 120vh;
    background-image: url('BackgroundContact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 3;

}



.emptySpace {
    width: 500px;
    height: 300px;


}

#slider {
    overflow: hidden;
    

}

#slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: 20s slider infinite; 
}

#slider figure img {
    width: 20%;
    float: left;
}

@keyframes slider {
    0% {
        left: 0;
    }
    20% {
        left: 0;
    }

    25% {
        left: -100%;
    }

    45% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    70% {
        left: -200%;
    }

    75% {
        left: -300%;
    }
    90% {
        left: -300%;
    }

    100% {
        left: -400%;
    }





}
