/* basic reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 16px;
  background-color: #5A5959;
}

/* LOGO */
.logo a {
  align-items: left;
}

.logo img {
  height: 75px;        /* desktop size */
  display: block;
}

/* sections */

.hero {
  padding: 40px 0;
  text-align: center;
  background: #f5f5f5;
}

.hero h2 {
  margin-bottom: 8px;
}

.section {
  padding: 32px 0;
}


.section h2 {
  margin-top: 0;
}

/* exhibitors */

#exhibitors ul {
  padding-left: 20px;
}

/* banner */
.banner-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;      /* centers the image */
}

.banner {
  overflow: hidden;    /* crop overflow if image is tall */
}
/* footer */

.site-footer {
  border-top: 1px solid #ddd;
  padding: 16px 0;
  text-align: center;
  font-size: 0.85rem;
}
