@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
body {
  font-family: "Lato", sans-serif;
  color: #323233;
  margin: 0;
}
header {
  width: 100%;
  background-color: #81182b;
  color: rgb(247, 245, 238);
  display: flex;
  flex-direction: row;
  position: relative;
}
header .icon {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
header .icon img {
  width: 4rem;
  z-index: 50;
  position: relative;
  height: auto;
  max-width: 100%;
  display: block;
}
header .heading {
  margin-top: auto;
  margin-bottom: auto;
}
header .heading h1 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  overflow-wrap: normal;
  word-break: normal;
  margin: 0;
}
nav {
  width: 100%;
  background-color: #fbefef;
  align-items: center;
  display: flex;
  margin-top: -0.5rem;
  position: relative;
}
nav a {
  color: #9f1d35;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  padding-inline-start: 2rem;
  flex-shrink: 1;
  z-index: 50;
  text-decoration: inherit;
}
main {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  margin-top: 6rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
main article {
  color: #2f4e4e;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
/*# article heading */
main article h2 {
  color: rgb(159, 29, 53);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin: 0;
}
/*# date and author */
main article h3 {
  color: rgb(0, 0, 0);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.25rem;
  margin: 0;
}
/*# article text */
main article h4 {
  color: rgb(0, 0, 0);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin: 0;
}
/*# copyright text */
main article h5 {
  color: rgb(0, 0, 0);
  font-weight: 400;
  font-size: 1.0rem;
  line-height: 1.2rem;
  margin: 0;
}
/*# article image*/
main article img {
  margin: 0;
  max-width: 100%;
  /*min-width: 200px;*/
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  /*float: left;*/
}
main article figcaption {
  background-color: white;
  color: black;
  font-size: 1.2rem;
  font-style: italic;
  padding: 20px;
  text-align: center;
  min-width: 100px;
  line-height: 1.6rem;
}
ion-icon {
  vertical-align: text-bottom;
}

@media screen and (max-width: 639px) {
  header {
    height: 5rem;
  }
}
@media screen and (min-width: 640px) {
  header {
    height: 4rem;
  }
  header .icon img {
    width: 7rem;
  }
  nav a {
    padding-inline-start: 9rem;
  }
}
@media screen and (min-width: 768px) {
  nav a {
    font-size: 3rem;
    line-height: 1;
  }
  main article .speakers .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  header .icon img {
    width: 8rem;
  }
  nav a {
    padding-inline-start: 10rem;
  }
  main article .poster {
    width: 50%;
    float: right;
  }
  main article .speakers .speakers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}/*# sourceMappingURL=main.css.map */



/* Images */

.image-container {
    display:flex;
    flex-wrap: wrap;
}

.image-container a {
    flex: 1;
    padding: 5px;
    box-sizing:content-box;
}

.image-container img {
    max-width: 100%;
    min-width: 200px; 
    height: auto;
    display: block;
}


main article .poster .poster-img img {
  max-width: 100%;
  display: block;
  position: static;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


.image-container img {
  max-width: 100%;
  min-width: 200px; 
  height: auto;
  display: block;
}


main article .poster .poster-img {
  max-width: 2000px;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  display: block;
}
