main {
  display: flex;
  height: auto;
  overflow: hidden;
}
.main-container {
  display: flex;
  position: relative;
  flex-direction: row;
  min-height: 100svh;
  min-width: 100svw;
  background-color: rgb(255, 255, 255);
  /* justify-content: center; */
  align-items: center;
  overflow: hidden;
  margin-top: 7rem;
  font-family: DMSans, OpenSans, Tajawal-Bold, MerriSans, verdana, Arial,
    Helvetica, sans-serif;
}
.fa-solid {
  margin-right: 1rem;
}
/* ////////////////////////////////////////////////////////////////////// */
.info {
  display: flex;
  position: relative;
  background: linear-gradient(to right, #d4ceac, #ffffff);
  height: 100svh;
  width: 60%;
  left: 0;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
.text {
  display: flex;
  position: relative;
  width: 90%;
}
.info h2 {
  margin-bottom: 2rem;
  font-size: 4.5rem;
  font-weight: 700;
}
.info p {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.button-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.button-container:hover a {
  cursor: pointer;
}
.view {
  display: flex;
  height: 5rem;
  width: 28rem;
  background-color: #000000;
  color: #fff;
  justify-content: center;
  align-items: center;
}
.download {
  display: flex;
  height: 5rem;
  width: 28rem;
  background-color: #000000;
  justify-content: center;
  align-items: center;
}
.download,
.view {
  font-size: 1.6rem;
  color: white;
}

/* ////////////////////////////////////////////////////////////////////// */
.bg-container {
  display: flex;
  position: absolute;
  right: 0;
  width: 40%;
  height: 100svh;
  background-color: #000000;
  padding: 0 3rem;
  overflow: hidden;
}
.neogeo {
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
  background-image: url(Images/neo-geo-gold.svg);
  background-size: 100% auto; /* Set width to 100% and height to auto */
  background-repeat: repeat-y; /* Repeat vertically */
  filter: brightness(0) invert(1);
  animation: moveDown 200s linear infinite; /* Adjust the animation duration as needed */
}
@keyframes moveDown {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 1000%; /* Move the pattern downwards */
  }
}

/* ////////////////////////////////////////////////////////////////////// */
@media (max-width: 60em) {
  .main-container {
    margin-top: 5.5rem;
  }
  .download a,
  .view a {
    font-size: 1.3rem;
    color: white;
  }
}
@media (max-width: 45em) {
  .main-container {
    display: flex;
    position: relative;
    flex-direction: column;
    min-height: 100vh;
    min-width: auto;
    background-color: rgb(255, 255, 255);
    justify-content: flex-start;
    align-items: center;
  }
  .bg-container {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 50svh;
    background-color: #000000;
    padding: 3rem;
    justify-self: flex-end;
    /* overflow: hidden; */
  }
  .neogeo {
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url(Images/neo-geo-gold.svg);
    background-size: 100% auto; /* Set width to 100% and height to auto */
    background-repeat: repeat-y; /* Repeat vertically */
    filter: brightness(0) invert(1);
    animation: moveDown 100s linear infinite; /* Adjust the animation duration as needed */
  }
  .info {
    min-height: 100svh;
    width: 100%;
    top: 0;
    background: linear-gradient(to bottom, #d4ceac, #ffffff);

    flex-direction: column;
    justify-content: space-evenly;
    align-items: space-between;
    padding: 3rem;
  }
  .view {
    height: 5rem;
    width: 26rem;
  }
  .download {
    height: 5rem;
    width: 26rem;
  }
  .download a,
  .view a {
    font-size: 1.4rem;
  }
}
