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

html {
  margin: 0;
  padding: 0;
  border-width: 0;
}

body {
  background-color: black;
}

section {
  visibility: hidden;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  /*   display: grid; */
  /*   justify-content: center; */
  /*   align-content: center; */
}

video {
  width:100vw;
  height: 100vh;
  object-fit: contain;
}

img {
  width:100vw;
  height: 100vh;
  object-fit: contain;
}

audio {
  position: fixed; /* or absolute */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.present {
  visibility: visible;
}

.slide {
  color: white;
}

a:link,
a:visited {
  color: white;
  text-decoration: none;
}





