/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
}*/

.machine {
    top:0;
   width:100%;
  height: 100vh;
  position: fixed;
  z-index:-1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
}
.machine-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: width: 100vw; */
  height: 100%; /* relative to nearest positioned ancestor and not nearest block-level ancestor - alternatively: height: 100vh; */ 
  object-fit: cover;
  z-index:-1;
  /* filter: brightness(50%); */ /* 0% black, 100% original image, values > 100% are allowed for brighter than original image. */
  /* display: none; */
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}
/* .intro-slideshow img:first-child {
  display: block;
  opacity: 1;
} */
.machine .machine-header {
    border-radius: 0.5rem;
    padding: 2rem 2.5rem;
    background-color: rgba(0,0,0,0.5);
}
.machine h1 {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    color:white;
}
.machine p {
    font-size: 1.75rem;
    color:white;
}

@media (max-width: 700px) {
  html { font-size: 12px; }
  .machine-header { padding: 1.5rem 2rem; }
  .machine h1 { font-size: 2.5rem; }
  .machine p { font-size: 1.25rem; }
}