@font-face { font-family: ChillMed; src: url("Fonts/Chillax-Medium.otf"); }
@font-face { font-family: ChillReg; src: url("Fonts/Chillax-Regular.otf" );}
@font-face { font-family: ChillSemi; src: url("Fonts/Chillax-Semibold.otf"); }
@font-face { font-family: ChillLight; src: url("Fonts/Chillax-Light.otf"); }
@font-face { font-family: ChillExt; src: url("Fonts/Chillax-Extralight.otf"); }

body {
    background-color: black;
}

#print-nav{
    width: 100%;
    height: 50px;
    background-color: rgb(0, 0, 0);
}
#printnav-home{
    height: 100%;
    width: 200px;
    font-family: ChillMed;
    font-size: 25px;
    color: white;
    background-color: black;
    border: 2px solid black;
    border-radius: 15px;
    transition-duration: .4s;
    position: relative;
    left: 72%;
    
}
#printnav-home:hover{
    background-color: white;
    color: black;
      box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.2), 0 10px 25px 0 rgba(255, 255, 255, 0.19);
    
}
#printnav-about-me{
    height: 100%;
    width: 200px;
    font-family: ChillMed;
    font-size: 25px;
    color: white;
    background-color: black;
    border: 2px solid black;
    border-radius: 15px;
    transition-duration: .4s;
    position: relative;
    left: 72%;
    
}
#printnav-about-me:hover{
    background-color: white;
    color: black;
      box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.2), 0 10px 25px 0 rgba(255, 255, 255, 0.19);
    
}
#print-mainblock{
    width: 100%;
    height: 150px;
    background-color: rgb(0, 0, 0);
      border-radius: 25px;

}

#print-title{
    color: white;
    font-family: ChillLight;
    font-size: 80px;
    text-align: center;
    position: relative;
    top: 0px;
    animation: print-title-ani 1s ease-in-out;
    text-shadow: 0 0 30px #3a3a3a, 0 0 30px #3a3a3a, 0 0 30px #3a3a3a, 0 0 30px #3a3a3a, 0 0 30px #3a3a3a, 0 0 30px #3a3a3a, 0 0 30px #3a3a3a;     
}

@keyframes print-title-ani {

    0%{
opacity: 0%;
top: -20px;
    }

    100%{
opacity: 100%;
top: 0px;
    }
    
}

#print-backprojects{
    background-color: black;
    color: white;
    font-family: ChillReg;
    font-size: 20px;
    position: absolute;
    left: 25px;
   
    border: transparent;
    border-radius: 10px;
    width: 200px;
    height: 50px;
    transition-duration: .4s;
}

#print-backprojects:hover{
background-color: white;
color: black;
box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.2), 0 10px 25px 0 rgba(255, 255, 255, 0.19);


}

/*PRINTING PROJECTS --------------------------------------------------------------------------*/

#print-project-1{
    width: 100%;
    height: 400px;
    border-radius: 25px;
    background-color: #000000;
    position: relative;
    top: 10px;  
}
#print-project-1-title{

    color: white;
    font-family: ChillLight;
    font-size: 40px;
    position: absolute;
    left: 350px;
    top: 10px;
}
#print-project-1-para{
     color: white;
    font-family: ChillLight;
    font-size: 20px;
    position: absolute;
    left: 350px;
    top: 100px;
    text-align: left;
    width: 600px;
}
#print-project-1-img{

    width: 250px;
    height: 300px;
    position: absolute;
    left: 50px;
    top: 50px;
    border-radius: 25px;
  
}