/* 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 .userinfo{
    display: inline-flex;
    align-items: center;
    gap: 30px;
    border-style: inset;
    border-width: 16px;
    padding: 8px;
    border-color: teal;
}

.main-area .userinformation{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
}

.main-area #username{
    font-size: 40px;
    font-weight: bold;
    text-decoration: underline;
}

.main-area #userdesc{
    font-size: 20px;
    color: grey;
    word-spacing: 2px;
    display: flex;
    align-items :center;
    gap: 8px;
}

.post{
    margin: 10px;
}

.post #post-text{
    font-size: 18px;
}

.divider{
    border-top: 5px dashed grey;
}

.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;
}

.tree-view #treeview-text{
  font-size: 15px;
}

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