/* Base Styles */
html, body {
  height: 100%;
  text-align: center;
  margin: 0;
  background-color: #181818;
  font-family: "Courier New", Courier, monospace;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><circle cx='10' cy='10' r='7' stroke='%23E5E5E5' stroke-width='2' fill='%23181818'/></svg>") 10 10, auto;
}

a {
  color: #E5E5E5;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-family: 'EB Garamond', serif; */

}

footer {
  padding: 20px 0 80px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #e5e5e5;
}

.logo-container {
  background-color: #E5E5E5;
  width: 100%;
  text-align: center;
  padding-top: 40px;
}

.intro-container {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 20px;
  margin-top: 40px;
  color: #181818;
}

.intro-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 8px;
}

.intro {
  margin: 20px;
  text-align: center;
  /* letter-spacing: -1px; */
  font-weight: 600;
}

.event-container {
  background-color: #181818;
  color: #e5e5e5;
  width: 100%;
  padding-bottom: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event {
  padding: 20px;
  margin-bottom: 20px;
  width: 80%;
  text-align: center;
  color: #E5E5E5;
}

.event p:not(:first-of-type) {
  /* margin-top: 15px; */
}

.event p:nth-child(3) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.event img {
  width: 100%;
  height: auto; /* this ensures the image maintains its aspect ratio */
}

/* .event-time {
  text-transform: uppercase;
  font-family: sans-serif;
  line-height: 80%;
} */

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: bold;
  font-style:normal;
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 125%;
  margin: 0;
  letter-spacing: 2px;
  text-align: center;

}

.event h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.event h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.event h3 {
  font-size: 18px;

}

.event p {
  margin-top: 20px;
}

.event:last-child {
  margin-bottom: 0;
}


.logo {
  /* display: flex; */
  /* justify-content: center; */
}

.logo img {
  width: 100px;
  height: 100px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center; /* This will center the children horizontally */
  justify-content: center; /* This will center the children vertically */
}

.footer a {
  display: block;
  text-align: center; /* This will center inline elements inside the link */
}

.footer img {
  margin: 0 auto; /* This will center block-level elements */
  display: block;
}

.contact {
  margin: 80px;
  padding-bottom: 80px;
}


/* .footer a {
 display: flex;
 justify-content: center;
 margin-top: 20px;
 margin-bottom: 20px;
} */
/* Scrollbar Styles */
.event-container::-webkit-scrollbar {
  width: 0.5em;
  background-color: #181818;
}

.event-container::-webkit-scrollbar-track {
  background-color: #181818;
}

.event-container::-webkit-scrollbar-thumb {
  background-color: #E5E5E5;
  border-radius: 10px;
}

/* Media Queries */
@media only screen and (min-width: 768px) {
  .event, .intro {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .event, .intro {
    width: 40%;
  }
}

@media only screen and (min-width: 1200px) {
  .event, .intro {
    width: 30%;
  }
}
