body2 {
  color: #000000;
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  margin: 30px;
  height: calc(80vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

#carousel1 {
  margin: 0 10vw;
  height: 100%;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#carousel1 img {
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 500ms;
}

.slide-cta {
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 7 / 5;
  position: absolute;
  top: 0;
  right: 0;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.slide-cta button {
  color: #ffffff;
  background-color: rgba(1,1,1,.10);
  font-family: "Roboto Mono", monospace;
  font-size: 1.25em;
  font-weight: 400;
  border: 2px solid #ffffff;
  padding: 10px 20px;
}

#carousel1-controls {
  margin: 0 10vw;
  padding: 10px 0 0;
  display: flex;
  justify-content: center;
}

#carousel1-controls button {
  color: #000000;
  background-color: transparent;
  border: 0;
  padding: 0;
}

.dot {
  background-color: #ffffff;
  border: 2px solid #000000;
  height: 0.5em;
  width: 0.5em;
  border-radius: 100%;
  margin: 10px;
  transition: background-color 500ms;
}

.dot.active {
  background-color: #000000;
}

.dot:hover,
button:hover {
  cursor: pointer;
}
