.serverMessage{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #4a404005;
  width: 100%;
  height: 100vh;
  gap: 32px;
  overflow: hidden;
}
.scrollingBg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  background-image: url('../../assets/backgrounds/error_bg.jpg');
  mix-blend-mode: multiply;
  background-repeat: repeat;
  background-size: 1720px;
  opacity: 0.064;
  z-index: -1;
}
body.darkmode .scrollingBg{
  opacity: 0.16;
}
box{
  align-items: center;
  width: 100%;
  max-width: 360px;
  padding: 32px 24px 24px;
}
box .icon{
  height: 256px;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
box .info{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}
body.darkmode box h2,
body.darkmode box p{
  color: #fff;
}
box h2{
  font-size: 32px;
  line-height: 34px;
}
box a{
  border-bottom: transparent !important;
}
box p{
  text-align: center;
  font-size: 16px;
}
body.darkmode box button{
  background-color: #fff;
  color: #696969;
  filter: none;
}
@keyframes scrollBg {
  from {
    transform: rotate(45deg) translateX(0) translateY(0);
  }
  to {
    transform: rotate(45deg) translateX(-50%) translateY(-50%);
  }
}