* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #000;
  font-family: Georgia, "Times New Roman", serif;
}

body {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin: 0 auto;
}

.site-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 140px;
  padding: 0 24px;
  background: #fff;
  z-index: 20;
}

.logo {
  height: 130px;
  width: auto;
}

.site-nav {
  margin-left: auto;
}

.slideshow {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.site-footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #fff;
  z-index: 20;
}

.site-footer p {
  font-size: 0.8rem;
  color: #333;
}
