body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow: hidden; */
}
.index_link {
  text-decoration: none;
  color: #2c2c2c;
}
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  position: fixed;
  z-index: 10;
  background-color: #ffffff;
}
.fa-circle{
  position: absolute;
  color: #2c2c2c;
  font-size: 10px;
  z-index: 10;
  top: 12%;
  left: 49.7%;
  cursor: pointer;
}
.logo {
  font-size: 30px;
  font-family: "Notable", sans-serif;
  font-weight: bolder;
  margin-left: 100px;
  z-index: 4;
}
nav ul {
  list-style: none;
  display: flex;
  margin-right: 100px;
  z-index: 4;
}
nav ul li {
  z-index: 4;
  padding-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #2c2c2c;
  font-family: "Gruppo", cursive;
  font-size: 18px;
  font-weight: 800;
  z-index: 4;
}
.story_img {
  max-width: 40vh;
  width: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}
.row_container {
  width: 100%;
  display: grid;
  column-gap:50px;
  justify-content: space-evenly;
}
.row1 {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  margin-top: -3600%;
  animation: stories1 15000s infinite alternate linear;
}
.row1:hover {
  animation-play-state: paused;
}
.row2 {
  margin-top: 100px;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  animation: stories2 15000s infinite alternate linear;
}
.row2:hover {
  animation-play-state: paused;
}
.row3 {
  margin-top: -3660%;
  grid-column: 3;
  display: flex;
  flex-direction: column;
  animation: stories3 15000s infinite alternate linear;
}
.row3:hover {
  animation-play-state: paused;
}
.row4 {
  display: flex;
  flex-direction: column;
  grid-column: 4;
  animation: stories4 15000s infinite alternate linear;
}
.row4:hover {
  animation-play-state: paused;
}
@keyframes stories1 {
  to {
    transform: translatey(3600%);
  }
} 
@keyframes stories2 {
  to {
    transform: translateY(-3630%);
  }
}
@keyframes stories3 {
  to {
    transform: translateY(3660%);
  }
}
@keyframes stories4 {
  to {
    transform: translateY(-3660%);
  }
}