.main-container {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  /* border-bottom: double */
}

h1 {
  font-size: 250%;
}

.header {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: double
}

.tagline {
  line-height: 10%;
}

body {
  background: #121212;
  --background-highlight: #1a1a1a;
  --background-press: #000;
  --background-elevated-base: #242424;
  --background-elevated-highlight: #2a2a2a;
  --background-elevated-press: #000;
  --background-tinted-base: hsla(0, 0%, 100%, .07);
  --background-tinted-highlight: hsla(0, 0%, 100%, .1);
  --background-tinted-press: hsla(0, 0%, 100%, .04);
  color: #fff;
  --text-subdued: #a7a7a7;
  --text-bright-accent: #1ed760;
  --text-negative: #f15e6c;
  --text-warning: #ffa42b;
  --text-positive: #1ed760;
  --text-announcement: #3d91f4;
  --essential-base: #fff;
  --essential-subdued: #727272;
  --essential-bright-accent: #1ed760;
  --essential-negative: #e91429;
  --essential-warning: #ffa42b;
  --essential-positive: #1ed760;
  --essential-announcement: #0d72ea;
  --decorative-base: #fff;
  --decorative-subdued: #292929;
  font-family: CircularSp-Arab, CircularSp-Hebr, CircularSp-Cyrl, CircularSp-Grek, CircularSp-Deva, var(--fallback-fonts, sans-serif), sans-serif;
  font-size: 120%;
}

h2 {
  color: #1ed760;
  font-size: 200%;
  margin-bottom: 5%;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

a {
  color: #fff;
}

.game-container {

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

/* .game-card {
  display: flex;
} */

.venue-card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

.venue-card p {
  font-size: 180%;
}

.venue-setting p {
  font-size: 150%;
}

.openers-list {
  display: flex;
  flex-direction: column;
  align-items: center;

}

.openers-carosel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  justify-content: center;
}

.openers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.openers-card img {
  float: left;
  width:  160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.openers-card img:hover {
  transform: scale(1.2);
}

.guess-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guess-search {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.guess-text-input {
  flex: 2;
  margin-block: 0px;
  font-weight: 400;
  background-color: #242424;
  border: 0;
  border-radius: 500px;
  color: #fff !important;
  height: 48px;
  padding: 6px 36px;
  text-overflow: ellipsis;
  width: 100%;
  text-transform: none;
  box-sizing: border-box;
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  appearance: auto;
  -webkit-rtl-ordering: logical;
  cursor: text;
  margin: 0em;
  padding-block: 1px;
  padding-inline: 2px;
  font-size: 100%;
}

.search-and-options {
  display: flex;
  flex-direction: column;

}

.search-and-options ul {
  cursor: pointer;
}

.guess-submit {
  background: none;
}

.guess-form form {
  width: 90%
}

.guess-number {
  display: flex;
  justify-content: center;
}

.headliner-winner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headliner-winner img {
  border-radius: 50%;
  max-width: 100vw;

}

.headliner-pic-spot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
}

.headline-name {
  margin-top: 0;
  margin-bottom: 2%;
  color: #1ed760;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 10%
}

.venue-name {
  font-size: x-large;
  margin-top: 5%;
  margin-bottom: 0%;
}

.venue-setting {
  display: flex;
  gap: 25%;
}

.venue-setting p {
  font-size: large;
}

 @keyframes horizontal-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateX(5px) }
  50% { transform: translateX(-5px) }
  75% { transform: translateX(5px) }
  100% { transform: translateX(0) }
 }

 .wrong-answer {
  display: flex;
  justify-content: center;
  animation: horizontal-shaking 0.5s;
 }

 .genre-hints {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
 }

 .give-up {
  display: flex;
  justify-content: center;
 }

 /* Spotify button styles */
.give-up button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1DB954;
  color: #121212;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.search-and-options button {
  margin: 2%;
  display: inline-block;
  padding: 10px 20px;
  background-color: #1DB954;
  color: #121212;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.search-and-options button:hover {
  background-color: #25D366;
  transform: translateY(-2px);
}

.give-up button:hover {
  background-color: #25D366;
  transform: translateY(-2px);
}

.footer {
  display: flex;
  justify-content: space-between;
  border-top: double
}

.record {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0
}

.next-up {
  font-size: 120%;
  display: flex;
  justify-content: center;
}