html, body {
  margin: 0;
  padding: 0;
  background: #ffffffe1;
  width: 100vw;
  min-height: 100vh;
  font-family: lato, sans-serif;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.page {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  padding: 10px 10vw 30vh;
  box-sizing: border-box;
  background: none !important;
  z-index: 1;
}
.row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 70%;
  max-width: fit-content;
  height: auto;

  padding: 1em;
  
}
.row img {
  width: 50%;
  height: auto;
}
.row video {
    width: 50%;
    height: auto;
    cursor: pointer;
}
.row img:hover,
.row video:hover {
    cursor: pointer;
}

.row p {
    font-size: 0.9em;
    line-height: 0.5em;
    color: #9f9f9f;
    opacity: 0;
}

.row:hover p {
    opacity: 1;
}