* {
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  background: linear-gradient(to bottom, #0b002e, black);
  color: #d4a76d;
  margin: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  min-height: 100vh;
}
.introduction {
  font-weight: 800;
  background: #d4a76d;
  color: black;
  border-radius: 50%;
  padding: 2em 3em;
  font-size: 120%;
  text-align: center;
}
h1 {
  font-size: 250%;
}
h2 {
  position: relative;
  font-size: 200%;
  padding: 0 30px;
  border-bottom: 3px solid #e3bb87;
  border-radius: 0 0 10px 10px;
}
h2::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #e3bb87;
}
ul.events {
  padding: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 15px;
}
ul.events li {
  list-style: none;
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 2/1;
  overflow: hidden;
}
ul.events li:hover img {
  transform: scale(1.1);
}
ul.events li img {
  transition: transform 0.3s;
  width: 100%;
  height: 100%;
}
ul.events li .box {
  color: white;
  background: linear-gradient(to right, transparent, #000000aa 50px);
  position: absolute;
  padding: 5px 5px 5px 50px;
  bottom: 0;
  right: 0;
}
ul.events li .title {
  font-size: 150%;
  font-weight: bolder;
  text-shadow: 0 0 10px black;
}
ul.events.small {
  width: 100%;
  display: grid;
  max-width: 1300px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  justify-content: center;
}
ul.events.small li .box .title {
  font-size: 100%;
}
hr {
  width: 90vw;
}
address {
  text-align: center;
  font-style: normal;
  padding: 0 0 5em 0;
}
.alert {
  background: #e3bb87;
  color: black;
  padding: 2em;
  border-radius: 10px;
  margin: 2em 0 0 0;
  text-align: center;
  font-weight: bold;
}
.alert a {
  color: black;
  text-decoration: underline;
}
