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

html {
  height: 100%;
}

body {
  position: relative;
  background-color: #222222;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}

.hero {
  width: 100vw;
  height: 100vh;
  background-color: #222222;
}

.f-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.f {
  width: 500px;
  padding-bottom: 100%;
  position: relative;
  cursor: pointer;
  /*&:hover {
      > div {
          box-shadow: none;
          opacity: 1;
      }
  }*/
}

.f-1,
.f-2,
.f-3,
.f-4,
.f-5,
.f-6 {
  width: 20%;
  height: 20%;
  background-color: white;
  position: absolute;
  border-radius: 100px;
}

.f-1 {
  top: 0;
  left: 0;
  transition: all ease-out 500ms;
}

.f-2 {
  top: 0;
  left: 40%;
  transition: all ease-out 500ms;
}

.f-3 {
  top: 0;
  right: 0;
  transition: all ease-out 500ms;
}

.f-4 {
  top: 40%;
  left: 0;
  transition: all ease-out 500ms;
}

.f-5 {
  top: 40%;
  left: 40%;
  transition: all ease-out 500ms;
}

.f-6 {
  bottom: 0;
  left: 0;
  transition: all ease-out 500ms;
}
