body {
  margin: 0;
  background-image: url(/assets/bg-main.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

* {
    font-family: "Pixelify Sans", sans-serif;
}

.game-screen {
  width: 1920px;
  height: 1080px;
  position: relative;
  overflow: hidden;
}

.game-wrapper {
  transform-origin: center;
}

.header {
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: lightgray;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  column-gap: 10px;
  box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
  justify-content: space-between;
}

/* LEFT SECTION */

.left-section {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.pixel-logo {
  width: 30px;
  height: 30px;
}

.pixel-logo-text {
  font-size: large;
}

/* MIDDLE SECTION */

.middle-section {
  display: flex;
  align-items: center;
  text-align: center;
}

/* A-ICON + TEXT START */
.icon-hover-div {
  height: 25px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  position: relative;
  transition: 0.3s ease;
  margin-right: 5px;
}

.nav-icon {
  width: 25px;
  height: 25px;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
}

.icon-hover-div:hover {
  transform: scale(1.05);
}

.icon-hover-div:active {
  transform: scale(0.90);
}

.icon-hover-text {
  position: absolute;
  opacity: 0;
  bottom: -30px;
  font-size: 14px;
  pointer-events: none;
  white-space: nowrap;
  transition: 0.3s ease;
}

.icon-hover-div:hover .icon-hover-text {
  opacity: 1;
}
/* A-ICON + TEXT END */

.search-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar {
  height: 25px;
  width: 225px;
  border-style: solid;
  border-width: 1px;
  border-right-width: 0px;
  box-sizing: border-box;
  font-size: small;
  padding-left: 5px;
  border-color: grey;
  color: rgb(144, 144, 144);
}

.search-bar-icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  height: 25px;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  border-color: grey;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-bar-icon-button:hover {
  transform: scale(1.05);
  border-color: black;
}

.search-bar-icon-button:active {
  transform: scale(0.90);
}

.search-bar-icon {
  height: 15px;
}

/* RIGHT SECTION */

.right-section {
  display: flex;
  align-items: center;
}

.profile-name {
  margin-right: 10px;
}

/* SIDEBAR */

.sidebar {
  background-color: darkgray;
  position: fixed;
  left: 0px;
  top: 50px;
  bottom: 0px;
  width: 180px;
  border-style: solid;
  border-width: 1px;
  border-top-width: 0px;
  border-bottom-width: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

/* A-ICON + TEXT START V2 */
.icon-hover-div-v2 {
  background: linear-gradient(45deg, brown, lightgray);
  height: 25px;
  width: 150px;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  position: relative;
  transition: 0.3s ease;
}

.nav-icon-v2 {
  width: 25px;
  height: 25px;
  border-radius: 3px;
  box-sizing: border-box;
}

.icon-hover-div-v2:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 10px brown;
}

.icon-hover-div-v2:active {
  transform: scale(0.90);
  box-shadow: 0px 0px 20px skyblue;
}

.icon-hover-text-v2 {
  position: absolute;
  opacity: 0;
  bottom: -35px;
  font-size: 14px;
  pointer-events: none;
  white-space: nowrap;
  transition: 0.3s ease;
}

.icon-hover-div-v2:hover .icon-hover-text-v2 {
  opacity: 1;
}
/* A-ICON + TEXT END V2 */

/* PROFILE INFORMATION */

.profile-info-div {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.profile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
}

.profile-name {
  margin-top: 5px;
  margin-bottom: 0px;
  font-weight: bold;
}

.profile-rank {
  margin-top: 1px;
  color: red;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: rgb(255, 178, 178);
}

/* END OF PROFILE INFORMATION */
/* PROGRESS BAR INFORMATION V1 */

.progress-bar-div-v1 {
  position: relative;
  height: 25px;
  width: 150px;
  background-color: lightblue;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 25px;
  transition: 0.3s ease;
  cursor: pointer;
}

.progress-bar-div-v1:hover {
  transform: translateY(-3px);
}

.progress-bar-div-v1:active {
  transform: scale(0.90);
}

.progress-bar-fill-v1 {
  height: 100%;
  width: 80%;
  background-color: brown;
  border-radius: 5px;
}

.progress-bar-text-v1 {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  color: beige;
}

.progress-bar-type-v1 {
  color: brown;
  font-size: 15px;
  white-space: nowrap;
}

/* PROGRESS BAR INFORMATION V1 END */

/* PROGRESS BAR INFORMATION V2 */

.progress-bar-div-v2 {
  position: relative;
  height: 25px;
  width: 150px;
  background-color: lightblue;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 25px;
  transition: 0.3s ease;
  cursor: pointer;
}

.progress-bar-div-v2:hover {
  transform: translateY(-3px);
}

.progress-bar-div-v2:active {
  transform: scale(0.90);
}

.progress-bar-fill-v2 {
  height: 100%;
  width: 30%;
  background-color: brown;
  border-radius: 5px;
}

.progress-bar-text-v2 {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  color: beige;
}

.progress-bar-type-v2 {
  color: brown;
  font-size: 15px;
  white-space: nowrap;
}

/* PROGRESS BAR INFORMATION V2 END */

/* PROGRESS BAR INFORMATION V3 */

.progress-bar-div-v3 {
  position: relative;
  height: 25px;
  width: 150px;
  background-color: lightblue;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 25px;
  transition: 0.3s ease;
  cursor: pointer;
}

.progress-bar-div-v3:hover {
  transform: translateY(-3px);
}

.progress-bar-div-v3:active {
  transform: scale(0.90);
}

.progress-bar-fill-v3 {
  height: 100%;
  width: 10%;
  background-color: brown;
  border-radius: 5px;
}

.progress-bar-text-v3 {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  color: beige;
}

.progress-bar-type-v3 {
  color: brown;
  font-size: 15px;
  white-space: nowrap;
}

/* PROGRESS BAR INFORMATION V3 END */

/* CREDITS */
.credits-div {
  position: absolute;
  bottom: 5px;
  border-top-style: solid;
  border-top-width: 2px;
  border-color: rgb(255, 178, 178);
}

.credits-text-top {
  margin-bottom: 0px;
  font-size: 14px;
}

.credits-text-bottom {
  margin-top: 2px;
  font-weight: bold;
  color: orangered;
  font-size: 16px;
}

/* CREDITS END */