@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');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  width: 100%;
  font-family: 'poppins', sans-serif;
  

}

nav{
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: #777777cc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 70px 15px 40px;
  z-index: 999;
}

nav a {
  text-decoration: none;
}

nav .logo {
  font-size: 22px;
  font-weight: 700;
}

nav .logo a {
  color: #111111;
  display: inline-block;

}

nav .logo a:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #ccc;
  transition: all .2s ease-in-out;
}

nav .navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 20px;
  font-weight: 600;
}

nav .navigation li {
  list-style-type: none;

}

nav .navigation li a {
  color: #111111;
  text-shadow: 0 0 10px #ccc;
  display: inline-block;
}

nav .navigation li a:hover {
  color: #d60000;
  transition: all .2s ease-in-out;
}

nav .navigation li:last-child{
  position: relative;
  display: flex;
  align-items: center;
}

nav .navigation li input {
  font-size: 18px;
  padding: 12px 40px 12px 12px;
  width: 100%;
  outline: none;
  border-radius: 12px;
  border: 2px solid #111;
  color: #111;
  height: 40px;
}

nav .navigation li i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #111;
  cursor: pointer;
  font-size: 18px;
}

main {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url(gambar/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  
}

main h4 {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  font-size: 35px;
  margin-left: 20px;
}