html {
  /*overflow: hidden;*/
}

body {
  margin: 0;
  box-sizing: border-box;
  background-image: linear-gradient(#757f60, #4c5f71);
}

html, body {
  height: 100%;
}

@keyframes quickfadein {
  from {opacity: 0;}
  to {opacity: 1;}
}

.root-container {
  display: grid;
  width: 100%;
  animation: quickfadein 0.25s ease-in-out;
}

.logo-container {
  max-height: 120px;
  height: auto;
  padding: 20px;
}

.content-logo-img {
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: auto;
}

.ambient-container {
  align-content: center;
  width: 100%;
  height: 100%;
  height: 1200px;
}

.ambient-iframe {
  align-self: center;
  display: block;
  margin: auto;
  width: 100%;
  min-width: 500px;
  height: 100%;
}

.vjs-default-skin {
  margin: 0 auto;
  overflow: hidden;
}

.video-container {
  border-style: solid;
  border-color: white;
  border-radius: 40px;
  border-width: 12px;
  overflow: hidden;
  margin-bottom: 100px;
}

video {
  outline: none;
}

.link-container {
  /*padding-top: 3%; */
  /*border: 5px outset; */
  text-align: center;
  text-decoration: none;
  color: white;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: white;
  font-size: 200%;
}

ul.a {list-style-type: none;}

.carousel {
  position: relative;
}

.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  padding: 1rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.carousel button.prev {
  left: 0;
}

.carousel button.next {
  right: 0;
}
