* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  overflow-x: hidden;
}

html {
  height: 100%;
}

#parallax {
	background-image: url(../images/back.jpg);
	/* height: 100vh; */
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.grid-container {
  display: grid;
  /* gap: 10px; */
}

#header {
  position: relative;
  margin: 0 auto;
}

.title {
  width: 600px;
  padding-top: 1em;
}

#app {
  position: relative;
  margin: 0 auto;
}

.marker {
  display: block;
  width: 60px;
  margin: 0px auto;
}

.wheel {
  width: 560px;
  height: 560px;
}

.button {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 222px;
  left: 180px;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.blur {
  animation: blur 10s;
}

@keyframes blur {
  0% {
    filter: blur(1.5px);
  }
  80% {
    filter: blur(1.5px);
  }
  100% {
    filter: blur(0px);
  }
}