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

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

/* 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 */

.main-area{
    display: flex;
}

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

.main-area #forum-separator{
  text-align: center;
  color: white;
  background-color: #008080;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 4px;
  word-spacing: 4px;
  display: flex;
  align-items: center;
  padding: 8px;
  border-style: inset;
  border-width: 12px;
  border-color: #004d4d;
}

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

.main-area .forum-items{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding: 2px;
  height: auto;
  overflow: auto;
}

.main-area .forum-subject{
  display: block;
  align-items: center;
}

.main-area .userprofile{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 2px;
}

.main-area #post-text{
  color: rgb(48, 89, 179);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-left: 10px;
}

.main-area #post-desc{
  color: grey;
  font-size: 16px;
  letter-spacing: 1px;
  word-spacing: 2px;
  margin-left: 10px;
}

.footer-brows{
    position: absolute;
    margin-left: 10px;
    margin-top: -90px;
}

.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 */