@import url("https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: black;
  overflow-y: scroll;
  font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: white;
  text-align: start;
}
.bodykadiv{
    width: 100vw;
    height: 100vh;
}
.eventParent {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("/images/pc_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* padding: 100px 50px; */
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  color: #ffffff;
}
.eventParent, .eventChild, .bodykadiv{
  overflow: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
body::-webkit-scrollbar, .eventParent::-webkit-scrollbar, .eventChild::-webkit-scrollbar, .bodykadiv::-webkit-scrollbar {
  display: none; /* WebKit browsers */
}
.eventChild {
  min-height: 100vh;
  padding: 0px 100px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 50px;
  width: 100vw;
  overflow-x: hidden;
}
.eventChild div {
  animation: moveright 0.5s linear forwards;
  opacity: 0;
}
@keyframes moveright {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.eventChild div:nth-child(1) {
  animation-delay: 0s;
}
.eventChild div:nth-child(2) {
  animation-delay: 0.1s;
}

.left span {
  font-size: 35px;
  font-weight: 800;
}
.left {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
}
.left * {
  animation: moveup 0.5s linear forwards;
  opacity: 0;
}
@keyframes moveup {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.left *:nth-child(1) {
  animation-delay: 0s;
}
.left *:nth-child(2) {
  animation-delay: 0.1s;
}
.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.right {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.right div img {
  width: 300px;
  border: 3px solid rgba(216, 216, 216, 0.988);
  /* box-shadow: 1px 1px 10px rgba(191, 255, 0, 0.56), -1px -1px 10px rgba(191, 255, 0, 0.56); */
  border-radius: 20px;
}
.right div div:nth-child(2) {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}
#ruleBookButton,
#registerNowButton {
  font-family: "SUSE", sans-serif;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  color: white;
  background: transparent;
  background: rgba(128, 128, 128, 0.372);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  border: none;
  border: 2px solid rgb(255, 255, 255);
  padding: 5px 20px;
}
#ruleBookButton:hover,
#registerNowButton:hover {
  color: yellowgreen;
  border: 2px solid yellowgreen;
  box-shadow: 1px 1px 10px yellowgreen, -1px -1px 10px yellowgreen;
}
.leftDesc {
  background: rgba(204, 255, 0, 0.268);
  backdrop-filter: blur(20px);
  height: 400px;
  /* width: 800px; */
  border: 3px solid rgba(238, 233, 233, 0.704);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.descChild1 {
  background: rgba(154, 153, 153, 0.535);
  /* border-bottom: 2px solid rgb(255, 255, 255); */
  border-radius: 10px;
  font-size: 18px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.descChild1 li {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
  align-content: center;
  /* height: 100%; */
  padding: 0px 10px;
  border-radius: 10px;
}
.descChild1 li:nth-child(1) {
  background: green;
  border: 1px solid white;
}
.descChild2 {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
}
.descChild2 p {
  display: none;
  color: rgb(227, 227, 227);
}
.descChild2 p:nth-child(1) {
  display: block;
}
.descChild2  button{
  font-family: "SUSE", sans-serif;
  cursor: pointer;
  border: none;
  background: green;
  color: white;
  padding: 2px 5px;
  border-radius: 10px;
  border: 1px solid white;
}
.background {
  background: red;
}
.hidden {
  display: none;
}
.show {
  display: block;
  animation: zoomIn 0.5s forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* .registrationForm form{
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: grey;
    border-radius: 12px; 
    display: none;
} */

/* .registrationForm{
    position: absolute;
    top: 0;
    left: 0;
} */
.flexform {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: grey;
  border-radius: 12px;
  animation: zoomIn 0.5s forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.none {
  display: none;
}
/* .right >div{
    height: 500px;
    overflow: scroll;
} */
@media only screen and (max-width: 600px) {
  .eventChild {
    gap: 50px;
    align-items: normal;
  }
  .left {
    margin-top: 0;
    width: 100%;
  }
  .leftDesc {
    height: 300px;
  }
  .left span {
    font-size: 25px;
  }
  .left p {
    font-size: 12px;
  }
  .right {
    margin-top: 0;
  }
  .right div {
    width: 100%;
  }
  .right div:nth-child(1) {
    padding: 0px 20px;
  }
  .right div div:nth-child(2) {
    justify-content: center;
    gap: 20px;
  }
  .right div img {
    width: 100%;
  }
  .eventChild {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 30px;
  }
  .descChild1 {
    height: 20px;
  }
  .descChild1 li {
    font-size: 13px;
    padding: 0 6px;
  }
  .leftDesc {
    width: 300px;
    width: 100%;
  }
  #ruleBookButton,
  #registerNowButton {
    padding: 5px 10px;
    font-size: 12px;
  }
  .descChild2 button{
    font-size: 10px;
  }
}
