@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 90%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: aliceblue;
}

.header-inner {
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  overflow: hidden;
  background-color: rgb(255, 255, 255, 0.5);
}

.header-inner .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-inner .slider .slide {
  width: 100%;
  display: none;
  filter: blur(1px);
  height: 100%;
}

.header-inner .jumbotron img {
  height: 10rem;
}

.header-inner .jumbotron h1 {
  font-weight: 600;
  font-size: 2rem;
}

.header-inner .jumbotron h2 {
  font-weight: 600;
  font-size: 1.5rem;
}

/* Large devices (desktops, 992px and up to 1200px) */
@media (max-width: 1200px) {
  html {
    font-size: 85%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 992px) {
  html {
    font-size: 80%;
  }
}

/* Extra-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
  html {
    font-size: 70%;
  }
}
