* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: black;
  background-image: url('../assets/background.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  font-family: "Oswald";
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  overflow: hidden;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  text-align: center;
  position: relative;
}

.logo {
  max-width: 90%;
  height: auto;
  display: block;
  z-index: 100;
  position: absolute;
  top:0;
  left: 50%;
  transform: translateX(-50%);
}

.tour-info {
    margin-top: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60%;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard syntax */
    padding-bottom: 200px;
    overflow: auto;
    max-height: 100vh;
}

@media only screen and (max-width: 600px) {
    .tour-info {
        margin-top: 175px;
    }
}

.tour-row {
    width: 100%;
    max-width: 750px;
    display: flex; 
    justify-content: space-evenly;
    color: white;
    line-height:2.5rem;
    border: white solid thin;
    
}

.tour-row:hover, .tour-row:active {
    color: #FFCC20;
    background-color: rgba(0, 0, 0, 0.5);
}

.expired {
    text-decoration: line-through;
}

.date {
    flex: 2;
    font-size: 1.5rem;
    vertical-align:middle;
    padding: 5px;
    text-align: left;
}

.city {
    flex: 3;
    line-height:2rem;
    vertical-align:middle;
    font-size: 2rem;
    padding: 5px;
}

.venue {
    flex: 2;
    line-height:2rem;
    font-size: 1rem;
    padding: 5px;
    text-align: right;
    vertical-align:middle;
}

.footer {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 180px;
}

.members {
  width: 100%;
  height: 100%;
  background: url('../assets/members.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .tour-row {
    flex-direction: column;
    gap: 5px;
  }
  .members img {
    max-width: 100%;
  }
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}