body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: scroll;
  font-family: arial, sans-serif;
  /* overflow: hidden; */
}
body {
  background: linear-gradient(225deg, #ffabab, #ffdaab, #ddffab, #abe4ff, #d9abff);
  background-size: 300% 300%;
  /* box-sizing: border-box; */
  display: table;
  /* height: 100vh; */
  margin: 0;
  position: relative;
  /* width: 100vw; */
  -webkit-animation: Rainbow 25s ease infinite;
  -moz-animation: Rainbow 25s ease infinite;
  animation: Rainbow 25s ease infinite;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  box-sizing: border-box;
  /* height: auto; */
  width: 100vw;
}
.Aligner-item {
  max-width: 50%;
}
.content h1,
.content p {
  text-align: center;
  max-width: 444px;
}
.content h1 {
  font-size: 18px;
  line-height: 20px;
  color: #fa4c06;
  text-transform: uppercase;
  margin: 48px 0 28px;
}
.content p {
  font-size: 14px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
}
p.email-address a {
  font-size: 16px;
  color: #ad172b;
  text-decoration: none;
  font-weight: bold;
}
p.social-icons a {
  margin: 0 10px 0;
}
img.blend-logo {
  width: 104%;
}
ul#slides {
  width: 100%;
  list-style-type: none;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  margin-top: 40px;
  margin-bottom: 66px;
}
ul#slides li img {
  /* max-width: 450px; */
  /* width: 100%; */
  max-width: 100%;
}
#slides {
    position: relative;
    /* height: 300px; */
    /* height: auto; */
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    padding-top: 65%;
}
/* #slides::before {
    padding-top: 100%;
} */
.slide {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;

    -webkit-transition: opacity 7s;
    -moz-transition: opacity 7s;
    -o-transition: opacity 7s;
    transition: opacity 7s;
}

.showing {
    opacity: 1;
    z-index: 2;
}
#bmf-button a {
    display: block;
    text-align: center;
    font-size: 18px;
    color: white;
    background-color: #fa4c06;
    text-decoration: none;
    padding: 15px 20px;
    margin-bottom: 25px;
}
#bmf-button a:hover {
    background-color: #ad1c2b;
}
#bmf-button a span {
    font-weight: bold;
    text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .Aligner-item {
    width: 70%;
    max-width: 80%;
  }
  .content h1,
  .content p {
    text-align: center;
    max-width: 100%;
  }
  /* .content p {
    font-size: 1.2em;
  } */
  ul#slides {
    margin-top: 30px;
    margin-bottom: 64px;
  }

}
@-webkit-keyframes Rainbow {
  0% {
    background-position: 94% 0%; }
  50% {
    background-position: 7% 100%; }
  100% {
    background-position: 94% 0%; } }
