* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background-image: url(img/banner.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.blur-area {
  position: absolute;
  width: 200vw;
  height: 200vh;
  left: -100vw;
  top: -100vh;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 1;
  -webkit-mask-image: radial-gradient(
    150px at 50% 50%,
    transparent 100%,
    black 100%
  );
  mask-image: radial-gradient(150px at 50% 50%, transparent 100%, black 100%);
  mix-blend-mode: hue;
}

nav {
  width: 100%;
  padding: 20px 8%;
  position: absolute;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 120px;
  cursor: pointer;
}

nav ul li {
  list-style: none;
  display: inline-block;
  margin: 0 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}

.text-box {
  position: relative;
  z-index: 2;
  text-align: center;
}

.text-box h1 {
  font-size: 70px;
  color: #fff;
}
.text-box button {
  background: #037299;
  color: #fff;
  padding: 15px 30px;
  border: 0;
  outline: 0;
  cursor: pointer;
  font-size: 18px;
  border-radius: 30px;
  margin-top: 30px;
}
