body {
    margin: 0;
    padding: 0;
}
.hero {
    position: relative;
    width: 100vw;
    height: 135vh;
	  display: flex;
    justify-content: center;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
    background: url("image/stormz.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: brightness(90%);
}
.hero-content {
    position: relative;
	font-family: "Monserrat", sans-serif;
    color: white;
    text-align: center;
    margin: 0.625rem;
}
.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0;
}
.hero-subtitle {
    font-size: 2rem;
    font-weight: 200;
    margin-top: 1rem;
}
.hero-button {
    background-color: #999999;
	opacity:50%;
    color: #000;
    border: 2px solid #cb376a;
    margin-top: .5rem;
    padding: 0.6rem .9rem;
    font-family: "Monserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    cursor: pointer;
	border-radius:30%;
}
.hero-button:hover {
    background-color: #439;
	opacity:50%;
    border: 1px solid #db7598;
}