/* @import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&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'); */

*{
  margin: 0;
  padding: 0;box-sizing: border-box;
  font-family: "Kiwi Maru", serif;
}

nav{
  display: grid;
  grid-template-columns: 10% 1fr 1fr 10%;
  align-items: center;
  color: white;
  min-height: 10vh;
}

#logo{
  grid-column: 2/3;
  font-size: 24px;
}

.menu{
  justify-self: end;
}

.slider{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #040404, #3b3937);
  background-color: #1a1a1a;
  /* background-color: #191817;
  background-color: #000; */
  z-index: -1;
}

section{
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero{
  height: 60%;
  width: 100%;
  position: relative;
}


.hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.headline{
  position: absolute;
  top: 60%;
  left: 10%;
  color: white;
  font-size: 100px;
  transform: translateY(-10%, -70%);
  z-index: 5;
}