/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* BODY FONT */
body{
   font-family: 'Orbitron', sans-serif;
   color: pink;
   font-size: 90%;
   text-shadow: 2px 2px 3px #ff05c5, 0 0 25px #ff05c5, 0 0 5px #ff05c5;
   background: url(https://i.ibb.co/NVv6LBy/pXtIxxA.gif);
   background-size: 30%;
   backdrop-filter: blur(0.8px);
   margin: 0;
   padding: 0;
}

/* HEADINGS */
h1, h2, h3, h4{
   font-family: 'Press Start 2P', cursive;
   color: pink;
   text-shadow: 2px 2px 3px #ff05c5, 0 0 25px #ff05c5, 0 0 5px #ff05c5;
}

/* CURSOR */
*{
   cursor: url(http://www.rw-designer.com/cursor-view/131283.png), auto;
}

/* NAV BAR */
nav{
   background: url(https://i.ibb.co/KGHQwbw/Yl5ZvXL.png);
   background-size: 50%;
   padding: 20px;
   text-align: center;
   border-radius: 4px;
   box-shadow: 0px 0px 5px 3px #E31C79;
   margin: 20px;
}

nav a{
   color: white;
   margin: 0 10px;
   text-decoration: none;
   font-weight: bold;
}

nav a:hover{
   color: pink;
   text-decoration: underline;
}

/* MAIN CONTENT WRAPPER */
.container{
   width: 80%;
   margin: auto;
   padding-bottom: 50px;
}

/* ABOUT BOXES */
.box{
   background: url(https://i.ibb.co/Xs5wZQt/l9egHyR.gif);
   border: 2px solid #ff00dd;
   border-radius: 4px;
   box-shadow: 0px 0px 5px 3px #E31C79;
   padding: 20px;
   margin-bottom: 30px;
}

/* SIDE IMAGES */
.left-img{
   position: fixed;
   left: 1px;
   bottom: 10px;
   width: 250px;
   z-index: 200;
}

.right-img{
   position: fixed;
   right: 1px;
   top: 1px;
   z-index: 200;
}

/* FOOTER */
footer{
   height: 130px;
   background-image: url(https://i.ibb.co/Xs5wZQt/l9egHyR.gif);
   background-size: 50%;
   border-radius: 4px;
   box-shadow: 0px 0px 5px 3px #E31C79;
   margin: 20px;
   text-align: center;
   padding-top: 40px;
   color: white;
}

