body {
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;   
  font-family: 'Lato', sans-serif;
}

h1 { font-size: 2rem; }
h2 { font-size: 2.6rem; }

.container {
  text-align: center;
  max-width: 90%;
  height: 250px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  color: white;
}

button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  background-color: #f08080;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

button:hover {
  background-color: #db6060;
  transition: ease;
}

#carouselExampleFade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

#carouselExampleFade .carousel-item img {
  height: 100vh;
  object-fit: cover;
}