
body {
    background: #fff;
    font-family: "Comfortaa", sans-serif;
    position: relative;
    margin: 0;
	cursor: default;
}


* {
    box-sizing: border-box;
}

.main-content {
    text-align: center;
    text-transform: uppercase;
    scroll-snap-type: y mandatory;
    position: relative;
    height: 100vh;

}

.hover,
.word,

h1 {
    position: relative;
    color: #fff;
    font: 900 60px Montserrat;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.concept {
    position: relative;

    height: 100vh;
    overflow: hidden;
    scroll-snap-align: center;
}
 .concept:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
 }
 
.concept:hover:before {
    opacity: 0.5;
}

.concept-one {
    display: grid;
    grid: repeat(3, 1fr)/repeat(3, 1fr);
    background: yellow;
    padding: 8em;
    background: url("https://images.unsplash.com/photo-1443890923422-7819ed4101c0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2560&q=80") no-repeat center center/cover;
}
.concept-one h1 {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -30px;
    transition: 0.5s ease;
    z-index: 0;
    letter-spacing: 25px;
}
.concept-one .hover {
    z-index: 1;
}
.concept-one .hover-1:hover ~ h1 {
    left: 30px;
    margin-top: -10px;
}
.concept-one .hover-2:hover ~ h1 {
    margin-top: -10px;
}
.concept-one .hover-3:hover ~ h1 {
    right: 30px;
    margin-top: -10px; 
}
.concept-one .hover-4:hover ~ h1 {
    left: 30px; 
}
.concept-one .hover-6:hover ~ h1 {
    right: 30px;
}
.concept-one .hover-7:hover ~ h1 {
    left: 30px;
    margin-top: -50px;
}
.concept-one .hover-8:hover ~ h1 {
    margin-top: -50px;

}
.concept-one .hover-9:hover ~ h1 {
	right: 30px;
    	margin-top: -50px;
}

a.mailto {
    	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	cursor: pointer;
}

