/* The first * is used as a global selector for margin/padding */

*{
  animation: animate 0.50s infinite;
  margin: 0;
  padding: 0;
}

/* Animation Starter */
body:before {
	content: " ";
	height: 100vh;
	width: 100vw;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-image: url('https://furakua.neocities.org/wArchive/resources/forum-gif.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	animation: yourAnimation 3s ease 0s 1 normal forwards;
	pointer-events: none;
}

@keyframes yourAnimation { 0.0% { opacity: 1; } 75% { opacity: 1; } 100% { opacity: 0; } }
nav, footer {
	margin: 1em;
	position: relative;
	box-shadow: 5px 8px 10px #0006;
}
/* Animation Starter */


/* background image tweaks */

body{
  background-image: url('https://furakua.neocities.org/wArchive/resources/wArchive-wp.png');
  background-repeat: repeat;
  background-size: cover;
  height: 100vh;
}

/* background image tweaks */

/* search engine - top bar */

.engine-bar-controls{
    position: sticky;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row;
    margin: 56px;
}

.engine-bar-controls .engine-bar-items{
    position: sticky;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 14.5px;
    align-items: center;
}

.engine-bar-controls .engine-bar-items #icon-text{
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.search-bar{
    display: flex;
    flex-direction: row;
    margin: 56px;
    margin-top: -54px;
    align-items: center;
}

.search-bar .search-bar-items{
    position: sticky;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

/* search engine - top bar */


.content-separation{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}

.content-separation #forum-separator{
  text-align: left;
  color: white;
  background-color: #008080;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 2px;
  word-spacing: 4px;
  display: block;
  padding: 8px;
  border-style: inset;
  border-width: 6px;
  border-color: #004d4d;
}

.content-separation #forum-text{
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 5px;
}

.content-separation .forum-items{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 4px;
  padding: 14px;
  height: auto;
  overflow: auto;
}

.content-separation .forum-items #forum-sub{
  color: grey;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  border-style: inset;
  border-width: 5px;
  padding: 4px;
}

.content-separation #post-text{
  color: rgb(48, 89, 179);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.content-separation #number-text{
  color: rgb(48, 89, 179);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}

.content-separation #post-desc{
  color: grey;
  font-size: 14px;
  text-align: left;
  letter-spacing: 1px;
  word-spacing: 2px;
  margin-left: 30px;
}

.footer-brows .internet #separations{
  display: flex;
  flex-direction: row;
}

.footer-brows .internet #indents{
  color: grey;
  border-style: inset;
  border-width: 4px;
  display: flex;
  align-items: center;
}

.taskbar #taskbar-items{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;  /* IMPORTANT SHIT */
  gap: 8px;
}

.taskbar #taskbar-items .default{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 4px;
  gap: 2px;
}

.open-tab{
  border-style: inset;
  border-width: 4px;
  color: grey;
}

.open-tab #tab{
  display: flex;
  flex-direction: row;
  align-items: center;
  color: black; 
  font-size: 14px;
  padding: 4px;
}

.processes{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  color: black; 
  font-size: 14px;
  padding: 4px;
}

.open-tab #time{
  display: flex;
  align-items: center;
  color: black; 
  font-size: 14px;
  padding: 4px;
}

/* animated cursor */

#overlay{
  margin: none;
  border: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  animation: animate 0.50s infinite;
}

@keyframes animate{
  0%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor0.png"), auto;
  }
  20%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor1.png"), auto;
  }
  40%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor3.png"), auto;
  }
  60%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor4.png"), auto;
  }
  80%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor5.png"), auto;
  }
  100%{ 
    cursor: url("https://furakua.neocities.org/custom-cursor-w98/photodisc-cursor0.png"), auto;
  }
  
}

/* animated cursor */