body {  
    background: url('../images/Background2.jpg') no-repeat center center fixed;
    background-size: cover;
}

.tickets-container {
    max-width: 1500px;
    margin: 3rem auto;
    margin-top: 20vh;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .concert {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    align-items: center;
  }
  
  .concert img {
    width: 300px;
    height: auto;
    object-fit: cover;
  }

  
  .concert-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    color: #193951;
    justify-content: center;
    width: 70%;
  }
  
  .concert-info h2 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
  }
  
  .date-place {
    font-weight: bold;
    color: #FFA134;
    margin-bottom: 0.5rem;
  }
  
  .description {
    color: #333;
  }

  .ticket-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background-color: #193951; /* Blue background */
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 50%;
  }
  
  .ticket-button:hover {
    background-color: white;
    color: #193951; /* Blue text on hover */
  }
  
  .contact-section {
    font-size: 1.2rem;
height: 100vh;
width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    text-align: center;
  }

  .contact-section a{
color: #FFA134;
      }
    