:root {
  --buy-size: 16px;
}
.ticket-page button.buy {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 54px !important;
  margin-top: 18px !important;
  padding: 16px 22px !important;
  font: 700 var(--buy-size) var(--mono) !important;
  line-height: normal !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease !important;
}
.ticket-page button.buy:hover {
  background: var(--white) !important;
  border-color: var(--white) !important;
  color: var(--blue) !important;
  opacity: 1 !important;
}
.ticket-page button.buy:active {
  background: rgba(255, 255, 255, 0.82) !important;
}
.ticket-page button.buy:focus-visible {
  outline: 2px solid var(--white) !important;
  outline-offset: 4px !important;
}
:root {
  --blue: #2457ff;
  --white: #fff;
  --mono: "DM Mono", monospace;
  --display: "Space Grotesk", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--blue);
  color: var(--white);
}
body {
  font-family: var(--display);
  font-size: 16px;
}
a,
a:visited {
  color: inherit;
}
main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 30px 5.55vw 24px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -1.3px;
  text-decoration: none;
}
header .logo {
  font-size: 40px !important;
}
.back {
  font: 500 11px var(--mono);
  text-decoration: none;
}
.ticket-page {
  width: 620px;
  margin: 88px auto 0;
}
.poster {
  display: block;
  width: 620px;
  height: auto;
}
.buy {
  display: block;
  padding-top: 22px;
  font: 500 11px var(--mono);
  text-decoration: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}
.buy:hover {
  opacity: 0.65;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1134px;
  width: 100%;
  margin-top: auto;
  padding-top: 78px;
  font: 500 10px var(--mono);
  line-height: normal;
  color: rgba(255, 255, 255, 0.66);
}
footer div {
  display: flex;
  gap: 28px;
  align-items: center;
}
footer span {
  text-transform: lowercase;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  opacity: 0.65;
}
@media (max-width: 700px) {
  main {
    padding: 24px 5.55vw 20px;
  }
  .ticket-page {
    width: 100%;
    margin-top: 64px;
  }
  .poster {
    width: 100%;
  }
  .buy {
    padding-top: 20px;
    font-size: 11px;
  }
  header .logo {
    font-size: 36px !important;
  }
  footer {
    display: block;
    padding-top: 60px;
    font-size: 13px;
    line-height: 25px;
  }
  footer div {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  footer a {
    display: block;
  }
}
