/* $$ VARIABLES */

/* définition des variables globales */

:root {
  --main-txt-color: #000000;
  --title-color: #ffffff;
  --background-color: #efff00;
  --artist-color: #e0dad3;
}

/* $$ GENERAL STYLES */

/* propriétés de style général */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--main-txt-color);
  font-family: "ITC Avant Garde Gothic Bk";
}

html, body {
  overflow-x: hidden;
  background: var(--background-color);
}

.container {
  height: 100vh;
  width: 100vw;
}

.container img {
  width: 100%;
  position: absolute;
  top:-10vh;
  height: 130vh;
  z-index: -1;
}

h1 {
  font-size: 7rem;
  color: var(--title-color);
  text-shadow: 0.5rem 0.5rem 0rem var(--main-txt-color);
  font-family: "Arcane Nine";
  padding-top: 3rem;
  padding-bottom: 0.5rem;
}

h4 {
  font-family: "ITC Avant Garde Gothic Md It";
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
  position: absolute;
  margin: 0px;
  padding: 0px;
  text-align: center;
  justify-content: center;
}

.content-divided {
  display: flex;
  flex: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.content-divided div {
  margin-bottom: 5vh;
  margin-left: 5vh;
  margin-right: 5vh;
}

.partner img {
  width: 6rem;
  margin-top: 2vh;
  margin-bottom: 2vh;
  transition: opacity 0.2s ease;
  filter: invert(1);
}

.partner img:hover {
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.text {
  font-size: 1rem;
  text-align: center;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.paddingbottom {
  margin-bottom: 2rem;
}

h3 {
  font-size: 3rem;
  font-family: "Doctor Glitch";
  text-align: center;
  margin-bottom: 1rem;
}

ul {
  text-align: left;
  padding: 0px;
}

.artist {
  display: flex;
  flex-direction: column;
  flex: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 30vw;
  min-height: 60vh;
  padding: 5vh;
}

.artist p {
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.artist img {
  height: 8rem;
  width: auto;
}

.box {
  background-color: var(--background-color);
  border: solid 2px var(--main-txt-color);
}

ul {
  font-size: 1rem;
}

.button {
  display: flex;
  text-align: center;
  align-items: center;
}
.button a {
  margin: 2.5vh;
  margin-bottom: 2vh;
  font-size: 1.3rem;
  text-decoration: none;
}

.ticket {
  min-width: 23vw;
  padding: 2vw;
  text-align: left;
}

.ticket:hover {
  background: url();
}

.ticket h4 {
  font-size: 1.3rem;
}

.ticket p {
  padding-top: 1rem;
}
/* $$ RESPONSIVE */

/* adaptation aux différentes tailles d'écran */

@media screen and (orientation: portrait), screen and (max-width: 800px) {
.container {
  width: 100vw;
}
.content-divided {
  flex-direction: column;
}

.artist {
  min-width: 90vw;
}
.ticket {
  min-width: 80vw;
  padding: 5vw;
}

h1 {
  font-size: 5.5rem;
  line-height: 5.5rem;
  text-shadow: 0.4rem 0.4rem 0rem var(--main-txt-color);
}

h3 {
  font-size: 2.3rem;
}

.partner img {
  width: 8rem;
}

}

/* $$ FONTS */

/* importation des polices spéciales */

@font-face {
  font-family: "Arcane Nine";
  src: url("fonts/arcanenine-ezp1x.ttf") format("opentype");
}

@font-face {
  font-family: "Doctor Glitch";
  src: url("fonts/Doctor\ Glitch.otf") format("opentype");
}

@font-face {
  font-family: "ITC Avant Garde Gothic Md It";
  src: url("fonts/ITCAvantGardeStd-MdObl.ttf") format("truetype");
}

@font-face {
  font-family: "ITC Avant Garde Gothic Bk";
  src: url("fonts/ITCAvantGardeStd-Bk.ttf") format("truetype");
}

@font-face {
  font-family: "Graphik";
  src: url("fonts/Graphik-Medium-Trial.otf") format("opentype");
}