 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider-container::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.heading-text{
  text-shadow: 2px 2px 5px rgb(0, 0, 0);
  color: #fff;
  font-size: 30px;
}

.content-text {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgb(0, 0, 0);
  justify-content: center;
}
.fb-icon {
  width: 40px;
  height: auto;
}