body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

section {
  height: 100vh;
  width: 100%;
  transition: background-color 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

/* Alternating white and blue backgrounds */
section:nth-child(odd) {
  background-color: white;
  color: #1a73e8; /* Google Blue (adjust as needed) */
}

section:nth-child(even) {
  background-color: #1a73e8; /* Google Blue */
  color: white;
}

/* Slanted divider effect */
section:nth-child(n+2):not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px; /* Vertical height of the slant */
  background: inherit;
  clip-path: polygon(0 0, 33.33% 0, 66.66% 20px, 100% 20px, 100% 100%, 0 100%);
  z-index: -1;
}
