/*Website CSS Template*/

/*The @import CSS function, allows to import any web font of your choosing.
You can use the following Google fonts, 
*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+20&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+15&display=swap');

html
{
	height: 100%;
}

p
{
	font-family: "Jersey 10", sans-serif;
	font-size: 20px;
}

/*Main Background*/

body
{
	background-image: linear-gradient(180deg,rgb(170, 255, 133) 40%, rgb(223, 137, 255) 100%);*/

}


/*Containers*/

.main
{
	margin: 20px;
}


.container
{
	display: flex;
	width: 100%;
	height: 100%;
}

.leftsidebar
{
	width: 25%;
  	margin-left: 20px;
}

.center
{
	width: 50%;
  	margin-left: 20px;
}

.rightsidebar
{
	width: 33%;
  	margin-left: 20px;
  	margin-right: 20px;
}

/*Cursor*/

*
{
	cursor: url("../images/cursor.png"), auto;


}

a:hover
{
	cursor: url("../images/cursor-hover.png"), auto;
}


/* The title of the page */

.title
{
	font-family: "Jersey 20", sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-size: 2.2em;


}

/*Temporary animation*/
  #text {
    /* animation: glitch-2 1s infinite linear; */
    animation: glitch-1 5s infinite linear;
  }

  @keyframes glitch-1 {
    0%,
    12%,
    15%,
    52%,
    55%,
    82%,
    85%,
    100% {
      opacity: 1;
      transform: scaleX(1) scaleY(1);
    }

    13% {
      opacity: .8;
      transform: scaleY(2);
      color: #;
    }

    53% {
      opacity: .8;
      transform: scaleX(.7);
      color: #;
    }

    83% {
      opacity: 8;
      transform: rotate(-10deg);
      color: #;
    }
  }

  @keyframes glitch-2 {
    13% {
      color: #;
    }

    53% {
      color: #;
    }

    83% {
      color: #;
    }
  }
    

/*Navigation bar*/

.header
{
	color: red;
	text-decoration: none;
	list-style: none;
	text-align: center;
	font-family: Orbitron, sans-serif;

}


.navlink
{
	font-size: 1.2em;
	font-family: "Press Start 2P";
	text-decoration: none;
	border: 3px outset black;
  	margin: 5px;
  	padding: 5px;
  	border-radius: 10px;
  	background: #45e67c;
  	font-weight: bold;
  	text-transform: uppercase;

}

.navbar
{
	display:inline-block;
	margin: 10px;
}


/*Containers for items*/

.titleheader
{
	font-family: "Jersey 15", sans-serif;
	font-size: 25px;
	text-align: center;
	background: linear-gradient(180deg,rgb(148, 58, 180) 0%, rgb(227, 187, 255) 100%);
	border: 5px double black;
	padding: 10px;
	text-transform: uppercase;
	border-top-left-radius: 10px;
  	border-top-right-radius: 10px;


}

.box
{
	background: linear-gradient(180deg, #d3ffc0, #7fe951);
  	border-radius: 10px;
  	box-shadow: 0px 0px 1px 1px black;
}

.inner
{
  padding: 10px;
  margin-bottom: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-left: 5px double black;
  border-bottom: 5px double black;
  border-right: 5px double black;

}

/*Footer*/

#footer-top{
	background: #0000006b;
}

#footer {
	font-size: medium;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	font-family: "Jersey 10", sans-serif;
	margin-top: 25px;
}
