body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100%;
}
  
#artWrapper{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-image: URL(lft_rgt.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#artGlass{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.71);
  backdrop-filter: blur(13.1px);
  -webkit-backdrop-filter: blur(13.1px);
  transition: 0.5s all;
}
#languageWrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 515px;
  background: white;
  border-radius: 4px;
  transition: 0.5s all; 
  /* overflow: hidden; */
}
#languageWrapper h1 {
  text-align: center;
  margin: 0;
  margin-top: 12px;
  padding: 13px 0;
  font-size: 24px;
  color: #333;
  min-height: 56px;
}
#languageWrapper img.flag {
  width: 40px;
  height: 30px;
  margin-right: 25px;
  margin-left: 10px;
  vertical-align: middle;
}

#languageWrapper ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
#languageWrapper #isjvLogo {
  width:auto;
  position: absolute;
  top: -25px;
  left: 116px;
  height: 40px;
  background: white;
  padding: 5px;
  border-radius: 4px;
}
#languageWrapper li {
  padding: 17px;
  padding-bottom: 17px;
  margin: 5px;
  border-radius: 4px;
  line-height: 30px;
  cursor: pointer;
  background: rgb(235, 235, 235);
  transition: 0.5s all;
}
#languageWrapper li.active {
  background: rgb(216, 245, 179);
}
#languageWrapper li:not(.active):hover {
  background: rgb(228, 241, 211);
}
#languageWrapper li span.active{
  position: absolute;
  display: inline-block;
  right: 25px;
  transition: 0.5s all;
  opacity: 0;
}
#languageWrapper li.active span.active{
  opacity: 1;
}
#continueButton {
  display: block;
  width: calc( 100% - 10px);
  margin-left: 5px;
  margin-top: 10px;
  padding: 15px;
  background: #2f6931;
  color: white;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.5s all;
}
#artLogo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

#artGlass.unanimate {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
}
#languageWrapper.unanimate {
  opacity: 0;
}