body {
  background: linear-gradient(to bottom, black, white);
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  margin: 0;
}

.Event__Container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.281), rgba(0, 0, 0, 0.589));
  padding: 1rem;
}

.Event__HeadBack {
  background-image: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.274)), url(EPRXGKJDBZC3ND4CMF3IIRIQZ4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border: none;
  width: 100%;
}

.Event__Up {
  padding-top: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

hr {
  border: none;
}

.Event__Img {
  max-width: 100%;
  height: auto;
  padding-top: 20px;
}

.Event__Centrate {
  justify-content: center;
}

.Event__Separator {
  border: none;
}

.Event__AContainer {
  background-color: rgba(0, 0, 0, 0.288);
  padding: 1rem;
}

.Event__Content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.Event__Bar {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
  margin: 1rem;
  max-width: 100%;
}

.Event__Text {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.info-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.Event__Title {
  text-align: center;
  padding-top: 2rem;
  font-size: 1.8rem;
}

.Historia__Titles {
  text-align: center;
  padding: 1rem;
  background-color: darkgray;
  color: black;
  font-size: 1.5rem;
}

.More__Websites {
  display: block;
  padding: 1rem;
}

Historia__Text p {
  font-size: 16px;
  color: #ccc;
}

.Event__HistoriaBox {
  margin: 40px auto;
  width: auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Event__HistoriaBox:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.Event__HistoriaLink {
  text-decoration: none;
  color: inherit;
  display: block;
}

.Historia__Content {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.04);
}

.Historia__Image {
  width: 50%;
  height: 250px;
  object-fit: cover;
}

.Historia__Text {
  width: 50%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
}

.Historia__Text h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}


.Event__Footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 1rem;
}

/* ======= MEDIA QUERIES ======= */
@media (min-width: 768px) {
  .Event__Content {
    flex-wrap: nowrap;
  }

  .Event__Text {
    padding: 3rem;
  }

  .info-img {
    max-width: 650px;
    height: 600px;
  }

  .Historia__Content {
    flex-direction: row;
  }

  .Historia__Image,
  .Historia__Text {
    width: 50%;
  }

  .Event__Up {
    font-size: 2rem;
  }
}