
/**
* Jzxy.cf Deisgn by Imortal-Wiso
*  Core Style By Lesshy. @2021-2022
*/

:root 
{
  --green: #2a9f42;
  --background: #292826;
  --bannerbackground: #121211b0;
  --animatebackground: rgba(29, 29, 29, 0.05);
}

body, html 
{
  background: #292826;
  color: aliceblue;
  font: lighter;
  font-family: 'Courier New', Arial, monospace;
  font-style: normal;
  vertical-align: middle !important;

  cursor:url('Cursor/default.png') !important;
} 


h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
span, 
b, 
a, 
i 
{
  color: aliceblue; 
  font: lighter;
  font-family: 'Courier New', Arial, monospace;
  font-style: normal;
}

.banner 
{
  background-color: #121211d2;

  padding: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;

  width: auto;
  height: auto;

  left: 0px;
  right: 0px;

  align-items: center;
  align-tracks: center;
  align-self: center;

  vertical-align: middle;
}  

.banner img
{
  position: inherit;
  vertical-align: middle;
  align-items: center;

  width:100%;
  height:30rem;
  min-width:min-content;
  max-width: max-content;
} 

@media screen and (max-width: 900px) 
{
  .banner img {
    width:100%;
    height:20rem;
  }
}

navigation {
  height: 49px;
  width: 100% !important;
  background: transparent;
  position: relative;
} 

navigation > links {
  display: inline;
  font-size: 18px;
} 

navigation > links > text {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #efefef;
} 

#unselectable 
{
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#link, a:link a:hover 
{
  color: var(--green) !important;
  cursor:url('Cursor/hover.png') !important;
  text-decoration: none;
} 

#middle 
{
  position:absolute;
  left: 0px; 
  right: 0px;
  top: 15%;
}

#animated 
{
  animation: theme 60s linear infinite 23;
  background-color: transparent !important;
}

#animated:after,
#animated:before 
{
  content: "";
  display: block;
  position: fixed;
  z-index: -5;
  top: 0;
  width: 100vw;
  height: 100vh;
  width: 100vmax;
  height: 100vmax;
  background: rgba(29, 29, 29, 0.219);
  animation: background 100s ease infinite;
}

#animated:after 
{
  left: 50vw;
}

#animated:before 
{
  right: 50vw;
  animation-delay: -90s;
  animation-direction: alternate-reverse;
}

@keyframes background 
{
  0% 
  {
    transform: rotate(0deg);
  }
  100% 
  {
    transform: rotate(360deg);
  }
}
