* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Light", sans-serif;
}

section {
  height: 100vh;
  position: relative;
  color: black;
}

section.intro video,
section.urban video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section.intro h1{
  color: dodgerblue;
}
section.urban h1 {
  color: white;
}

section h1 {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 75px;
}
section.classic {
  background-color: white;
}
section.modern {
  background-color: dodgerblue;
}
section.urban {
  background-color: chocolate;
}
section.intro {
  background-color: black;
}
