@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Poetsen+One&display=swap');

/* .poetsen-one-regular {
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.chewy-regular {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
} */

html {
  font-size: .625em;
  font-size: calc(1em*.625);
  --red : #ff3131;
  --dark-blue: #1e4159;
  --light-blue: #84aac2;
  --light-yellow: #fff5cf;
}
body{
  font-size: 1.6em;
  color: #fff;
}

a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
a::after {
  content: url(../images/arrow-up-right-from-square-solid.svg);
  width: 1.5rem;
  display: inline-block;
  margin-left: 1rem;
}

ul {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

header {
  height: 27.4vw;
  background: center / contain no-repeat url(../images/header-bg.png) var(--dark-blue);
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
}

h1, h2, .dates, .date, .hour {
  font-family: "Chewy", system-ui;
}

h1 {
  color: #fff;
  transform: rotate(-20deg);
  font-size: 1rem;
  position: relative;
  top: -1.3rem;
  width: 70%;
}

h1 .red{
  color: var(--red);
  position: absolute;
  top: 1rem;
  left: .5rem;
}

.dates {
  text-align: right;
  color: var(--dark-blue);
  font-size: 1rem;
  width: 30%;
}

article {
  background: var(--dark-blue);
  padding: 1em;
}

h2, h4 {
  -webkit-text-stroke: 2px var(--light-blue);
  color: #fff5cf;
}

h2 {
  text-align: center;
}
h3 {
  font-size: 3rem;
  line-height: 2rem;
}
.day {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.day:nth-child(2n) {
  text-align: right;
}

.day:nth-child(2n+1) {
  flex-direction: row-reverse;
}

.date {
  -webkit-text-stroke: 3px var(--red);
  color: #fff5cf;
}

.last {
  text-align: center;
}


@media screen and (min-width: 600px) {
  h1 {
    font-size: 2em;
    top: -1.3em;
  }
  h1 .red {
    top: .7em;
  }

  article {
    padding-left: 2em;
    padding-right: 2em;
  }

  .dates {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 900px) {
  h1 {
    font-size: 3em;
  }
  
  .dates {
    font-size: 2.2em;
  }
  
  article {
    padding-left: 4em;
    padding-right: 4em;
  }

  h2, h3 {
    font-size: 3em;
  }

  h3 {
    line-height: 3rem;
  }

  h4 {
    font-size: 2.5em;
  }
}

@media screen and (min-width: 1500px) {
  header {
    height: 28.5vw;
  }

  h1 {
    font-size: 6em;
  }

  h2 {
    font-size: 5em;
  }

  .dates {
    font-size: 4em;
  }

  h4 {
    font-size: 3em;
  }

  article {
    padding-left: 15em;
    padding-right: 15em;
  }

  li {
    font-size: 2em;
  }

  h3.date {
    font-size: 10em;
    line-height: 10rem;
    -webkit-text-stroke: 6px var(--red);
  }

  .little {
    font-size: 1.8rem;
  }
}
