body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: black;
  color: white;
  z-index: -50;
}

body {
  font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: black;
}

.flex {
  display: flex;
}

.j-c {
  justify-content: center;
}

.j-sb {
  justify-content: space-between;
}

.a-c {
  align-items: center;
}

t-c {
  text-align: center;
}

img {
  display: block;
  width: 100%;
}

.z-index {
  position: relative;
  z-index: -2;
}

button {
  margin-top: 1rem;
  font-family: "SUSE", sans-serif;
  font-size: 1.5rem;
  padding: 1rem 4rem;
  border-radius: 1.7rem;
  background: rgb(0, 0, 0);
  border: 3px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: all ease-in-out 0.4s;
}

button:hover {
  border: none;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.about-events {
  padding: 0 0rem 0 10rem;
}

.about-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; /* Adjust the gap between the divs as needed */
}

.event-details, .poster {
  text-align: left;
}

.poster img {
  width: 100%;
}

h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1rem;
  font-weight: 400;
  padding: 0 4em 0 0;
  margin-bottom: 4rem;
  padding: 0;
}

button {
  margin-top: 2rem;
}

h3 {
  font-family: Oswald;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5rem;
  margin-top: 2rem;
  cursor: pointer;
  transition: all ease 0.5s;
}

h3:hover {
  transform: translateY(-10px);
}

@media screen and (max-width: 1300px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  button {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1054px) {
  .about-events {
    padding: 0;
    display: block;
    align-items: center;
  }
  .event-details {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .scroll-here {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .event-details {
    padding: 2rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  button {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.field {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 300px;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
.scroll {
  margin-top: 6rem;
  margin-left: 10rem;
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}
.scroll::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}
.arrow {
  width: 0;
  height: 40px;
  border: 1px solid #333;
  position: relative;
  animation: scroll 1.5s infinite;
  -webkit-animation: scroll 1.5s infinite;
}
.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -5px;
  width: 1px;
  height: 10px;
  border-top: 10px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

@keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .scroll {
    margin-top: 2rem;
    margin-left: 1rem;
  }
}/*# sourceMappingURL=main.css.map */