
body{
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight:weight;
  font-style: normal;
  min-height: 100vh;
  background: url(pozadi.png) no-repeat;  
  background-size: cover; 
  background-position: center;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.header{
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;

}

.navbar a{
position: relative;
font-size: 30px;
color:#713141 ;
font-weight: 500;
text-decoration: none;
margin-left: 40px;

}
.navbar a::before{
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
background: #713141;
transition: .3s;
}
.navbar a:hover::before{
  width: 100%;
}
.banner{
  display: flex;
    justify-content: left;
    width: 100%;
    top: 50%;
    position: absolute;
    padding-left:3% ;
    transform: translateY(-50%);
    color: #713141;
}
.banner h1{
  justify-content: left;
  font-size: 100px;
  font-weight: 600;
}
.line-up p{
  font-size: 50px;
  padding-left: 15%;
}