.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("kommersnart.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    filter: blur(2px);
    
  }
 .maintext {
    text-align: center;
    top: 45%;
    left: 37%;
    position: absolute;
    font-size: 92px;
    color: white;
    font-family: "Oswald";
    text-shadow: 0 0 10px rgb(0, 0, 0);
  }
   .container {
  position: absolute;
  top: 29%;
  left: 2%;
}
.center{
 position: absolute;
 top: 20%;
 width: 100%;
 text-align: center;
 font-size: 100px;
}
.button {
 display: inline-block;
 border-radius: 80px;
 background-color: #474747cc;
 border: none;
 margin-bottom: 80px;
 text-align: center;
 font-size: 40px;
 font-family: "Oswald";
 width: 300px;
 height: 70px;
 transition: all 0.4s;
 cursor: pointer;
 box-shadow: 5px 5px 8px black;

}
.button  span {
 cursor: pointer;
 display: inline-block;
 position: relative;
 transition: 0.5s;
 color: #FFFFFF;
}
.button span:after {
 content: '\00bb';
 position: absolute;
 opacity: 0;
 top: 0;
 right: -20px;
 transition: 0.5s;
}
.button:hover span {
 padding-right: 25px;
}
.button:hover span:after {
 opacity: 1;
 right: 0;
}