body{
  font-family: arial;
  font-weight: bold;
  transition: background, 1s;
}
.white{
  background-color: rgba(255, 255, 255, 0.95);
}
.black{
  background-color: rgba(0, 0, 0, 0.95);
}
a{
  pointer-events: auto;
}
button{
  pointer-events: auto;
}



.top{
  background-color: black;
  position: fixed;
  right: 0%;
  left: 0%;
  top: 0%;
  height: 75px;
  display: flex;
  align-items: center;
  z-index: 999;
}
.barItem{
  color: white;
  font-size: 40px;
  margin-left: 20px;
}
.barItem:hover{
  filter: brightness(70%);
}



.backgroundColorImage{
  height: 80px;
  width: 80px;
  padding: 0;
  margin: 0;
  border-radius: 30px;
  border: none;
}
.backgroundColorButton{
  position: fixed;
  left: 15px;
  top: 90px;
  height: 80px;
  width: 80px;
  padding: 0;
  border-radius: 30px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.blackImg{
  background-color: rgba(0, 0, 0, 0.4);
}



.accountsDiv{
  background: rgba(100, 100, 100, 0.5);
  --width: 575px;
  width: var(--width);
  margin-left: calc(50vw - (var(--width) / 2));
  margin-top: 50px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-radius: 50px;
}

.name{
  font-size: 50px;
  text-align: center;
  margin-top: 0;
}
.img{
  --width: 140px;
  height: var(--width);
  width: var(--width);
  margin: 15px;
  margin-left: calc(50% - (var(--width) / 2));
  border-radius: 100%;
}

.account{
  --width: 500px;
  width: 500px;
  height: 70px;
  margin-left: calc((575px / 2) - (var(--width) / 2));
  position: relative;
  display: flex;
  justify-content: center;
  background: rgba(122, 122, 122, 0.5);
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.4s, margin-bottom 0.7s;
}
.accounts{
  text-decoration: none;
}
.accImg{
  position: absolute;
  left: 10px;
  --height: 50px;
  height: var(--height);
  align-self: center;
  margin-top: 5px;
}
.account:hover{
  background-color: rgba(160, 160, 160, 0.5);
}
.accTitle{
  color: white;
  display: inline-block;
  font-size: 25px;
  margin-top: 20px;
}


.blackColor{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  background-color: rgb(0, 0, 0);
  opacity: 1;
  transition: opacity 1s;
  pointer-events: none;
}
