body {
    /* background-color: #e7eaf6; */
}

.event-header {
    margin-top: 15%;
}
.map-container{
    width: 100%;
    height: 100%;
    height: 400px;
    /* margin: 1em;; */
}
.qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-column {
    border-radius: 20px 60px 20px 60px;
    max-width: 70%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.4s ease-in-out;
    object-fit: fill;
    /* border-radius: 10px; */
    /* max-width: 40px;
    height: auto;  
    display: block;
    margin: auto; */
    /* width: 100%; */
}

.event-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5em;
    padding-left: 10%;
    font-family: sans-serif;
    /* font-family: "Trattatello", fantasy; */
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    color:  rgb(105, 103, 103);
    transition: color 0.3s ease-out;
}

.events-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    letter-spacing: normal;
    word-spacing: normal;
    text-rendering: auto;
    font-size: 2em;
    color: #222;
    margin-bottom: 0.2em;
    margin-left: 0 0 18px 0;
    padding: 1.5rem;
    /* font-family: "Trattatello", fantasy; */
    /* letter-spacing: 0.06em; */
    transition: color 0.3s ease-out;
}

.event-card {
    padding: 1.5rem;
	border-radius: 1rem;
	width: calc(100% - 2rem);
	box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
    margin-bottom: 1em;
    --img-scale: 1.001;
    --title-color: black;
    --link-icon-translate: -20px;
    --link-icon-opacity: 0;
    position: relative;
    background-color: aliceblue;
    transform-origin: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}
.event-card:nth-child(even) {
	flex-direction: row-reverse;
	background: honeydew;
	margin-right: -1rem;
	margin-left: 1rem;
}

.event-card:nth-child(even)::before {
	transform: rotateY(180deg);
}

.event-card:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.valid-marker{
  width: 100%;
  height: 3em;
  background-color: #50C878;
}

.invalid-marker{
  width: 100%;
  height: 3em;
  background-color: #8B0000;
}