body {
  width: 1920px !important;
  height: 1080px !important;
  background-position: left !important;
  background: url(/src/img/bg.png);
}

.container {
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(.2rem);
  background: rgba(0, 0, 0, 0.1);
}

.commentBox-header {
  width: 500px;

  position: fixed;
  right: 0;

  color: whitesmoke;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1rem);

  text-align: center;
  padding: 1rem 0;
  border-bottom-left-radius: 1rem;
}

.commentBox-header h1 {
  font-size: 50px;
}

.commentBox {
  width: 500px;
  height: 850px;

  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;

  color: whitesmoke;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1rem);

  position: fixed;
  right: 0;
  top: 135px;
}

.loadingBox {
  width: 1420px;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loadingBoxOver {
  width: 700px;
  height: 100px;

  padding: 1rem;

  display: block;

  border: 5px solid whitesmoke;
  border-radius: 2rem;
}

.loadingBar {
  width: 100%;
  height: 100%;

  background: rgb(245,245,245);
  border-radius: 1rem;
  background: linear-gradient(90deg, rgba(245,245,245,0) 0%, rgba(245,245,245,1) 50%, rgba(245,245,245,0) 100%);
  background-size: 400% 400%;
	animation: loadingBG 5s ease infinite;

  display: flex;
  justify-content: center;
  align-items: center;
}

.loadingBar h1 {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.8);
}

.membership {
  position: fixed !important;
  bottom: 0;
  
  width: 100%;
  height: 80px;

  background: whitesmoke;
  color: #2e2f2f;
}

@keyframes loadingBG {
  0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}