* {
  box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
 cursor: url('curse.png'), auto;
 scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }
header {
  background: linear-gradient(to right, rgba(255, 170, 0, 0.74), hsla(40, 100%, 50%, 0.5), rgba(0, 0, 0, 0.5), rgb(0, 0, 0)); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  color: hsla(40, 100%, 50%, 0.74);
  text-shadow: 2px 2px 5px #ffffff00;
  text-align: center;
  padding: 1rem;
  
}
header:hover {
 color: transparent;
 animation: glow 1s ease-in-out infinite alternate;
 -webkit-animation: glow 1s ease-in-out infinite alternate;
 -moz-animation: glow 1s ease-in-out infinite alternate;
}
h1 {
  font-family: Shippori Mincho B1;
  font-size: 350%;
}
body {
  background-color: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 5px #ffffff81;
  font-family: Offside;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 8px;
  line-height: 75px;
  margin: 0px;
}

img {
  margin-right: 6px;
  float: right;
}
p {
  margin-left: 10px;
  margin-top: 10px;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 1;
  height: 60px;
  overflow: hidden;
  background-color: #000000;
  border-radius: 0px 0px 15px 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

li {
  float: left;
  padding: 0;
  border-radius: 15px;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 0px 14px;
  height: 60px;
  text-decoration: none;
  text-shadow: 2px 2px 5px #ffffff00;
  height: fit-content;
  border-radius: 15px;
}
.active:hover {
  color: hsla(40, 100%, 50%, 0.74);
  text-shadow: 0px 0px 5px hsla(40, 100%, 50%, 0.74);
}
.loader {
 border: 8px solid #f3f3f3;
 border-top: 8px solid hsla(40, 100%, 50%, 0.74);
 border-radius: 50%;
 width: 80px;
 height: 80px;
 animation: spin 2s linear infinite;
}
.topper {
 background-color: #fff;
 color: #000;
 height: 40px;
 width: 40px;
 display: flex;
 justify-content: center;
 text-align: center;
 padding: 0.38rem;
 position: fixed;
 bottom: 20px;
 right: 20px;
 z-index: 2;
}
@keyframes spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}
li a:hover:not(.active) {
  background-color: #ffffff;
  color: #000000;
}
#cover{
 background-color: #000000;
 position: absolute;
 width: 100%;
 height: 100%;
 align-items: center;
 justify-content: center;
 padding: 1rem;
 z-index: 3;
}
#start{
  background-color: rgb(0, 0, 0);
  align-items: center;
  margin: auto;
  width: 100%;
  height: 100%;
  top: 0%;
  bottom: 0%;
}
#home {
  background: linear-gradient(to right, hsla(40, 100%, 50%, 0.5),hsla(40, 100%, 53%, 0.5),hsla(40, 100%, 71%, 0.5), hsla(40, 100%, 56%, 0.5)); 
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  width: 100%;
  text-align: left;
  display: flex;
  pointer-events: none;
}

@media screen and (max-width: 768px) { 
  .home {
    flex-direction: column-reverse;
  }
  p {
    letter-spacing: 4px;
    line-height: 25px;
  }
  ul {
   height: 50px;
   font-size: 18px;
  }
  li {
   height: 50px;
   font-size: 18px;
  }
  li a {
   height: 50px;
   font-size: 18px;
   padding: 0px 5px;
  }
}

footer {
  background-color: #000000;
  color:#fff;
  font-size: xx-small;
  text-shadow: 0px 0px 0px #ffffff00;
  text-align: center;
  padding: 1rem;
  position: relative;
  letter-spacing: 2px;
  line-height: 15px;
  bottom: 0;
  width: 100%;
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px hsla(40, 100%, 50%, 1), 0 0 20px hsla(40, 100%, 50%, 0.98), 0 0 30px hsla(40, 100%, 50%, 0.97), 0 0 40px hsla(40, 100%, 50%, 0.96), 0 0 50px hsla(40, 100%, 50%, 0.95), 0 0 60px hsla(40, 100%, 50%, 0.94), 0 0 70px hsla(40, 100%, 50%, 0.93);
  }
  to {
    text-shadow: 0 0 20px hsla(40, 100%, 50%, 1), 0 0 30px hsla(40, 100%, 50%, 0.98), 0 0 40px hsla(40, 100%, 50%, 0.97), 0 0 50px hsla(40, 100%, 50%, 0.96), 0 0 60px hsla(40, 100%, 50%, 0.95), 0 0 70px hsla(40, 100%, 50%, 0.55), 0 0 80px hsla(40, 100%, 50%, 0.6);
  }
}
