html {
  scroll-behavior: smooth;
}
body {
  font-family: "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  background-color: white;
  text-align: center;
  margin: 0;
}
#page-wrapper {
 width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#header {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
  position: fixed;
  display: block;
}
#content {
  margin-left: auto;
  margin-right: auto;
  padding-top: 5em;
  margin-bottom: 11em;
}

a.link {
  display: inline-block;
  width: 30%;
  border: solid black 1px;
  background-color: white;
  padding: .5em 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #777;
  transition: 0.5s ease-in-out;
}
a.link.active {
  color: black;
}
a.link.left-button.active {
  background-color: #eeeeee;
}
a.link.middle-button.active {
  background-color: #ddfbff;
}
a.link.right-button.active {
  background-color: #d6ffd9;
}
a.left-button:hover {
  background-color: #DDDDDD;
  color: black;
  transition: 0.25s ease-in-out;
}
a.middle-button:hover {
  background-color: #BCF7FF;
  color: black;
  transition: 0.25s ease-in-out;
}
a.link.right-button:hover {
  background-color: #ADFFB4;
  color: black;
  transition: 0.25s ease-in-out;
}
.item {
  /*	border: solid 1px grey;*/
  width: 26%;
  height: auto;
  margin: 0 1% 3em;
  display: inline-block;
  vertical-align: bottom;
}
.video-container video {
  max-width: 100%;
  height: auto;
  position: relative;
  /*width: fit-content;*/
  margin: auto;
}
#creates, #solutions {
  position: absolute;
  top: 100vh;
  transition: 0.5s ease-in-out;
	background-color: white;
}
#creates {
  padding: 3em 0 14em;
} 
#solutions {
  padding: 3em 0 20em;
}
#footer {
  background: #ddd;
  position: fixed;
  bottom: 0;
  left: 0;
  /* top: 71vh; */
  min-width: -webkit-fill-available;
  /* min-height: 6em; */
  padding: 4em 1.5em 26em;
  top: 0; /*4em;*/
  transition: 0.5s ease-in-out;
}
#footer a {
	text-decoration: none;
	color:#777;
}
#footer a:hover {
	text-decoration: underline;
}
#description-header {
  text-transform: uppercase;
}
@media all and (max-width:900px) {
  .item {
    width: 90%;
    margin: 0 1% 1em;
  }
  h2 {
    font-size: 1.2em;
  }
}
@media all and (min-width:901px) {
  #footer {
    top: 72vh !important;
	  padding-left: 17em !important;
	  padding-right: 17em !important;
  }
  p {
    font-size: 1.3em;
  }
}
/*
.play-button:focus {
    outline: none;
}*/