body {
  margin: 0;
  background-image: url("http://1-background.com/images/clouds/white-clouds-blue-sky-seamless-background-tile.jpg");
}

#heavenintro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("http://1-background.com/images/clouds/white-clouds-blue-sky-seamless-background-tile.jpg");
  background-size: cover; 
  background-position: center;
  z-index: 9999; /* just making shore*/
  
  animation: fadeOut 3s ease-in forwards;
}

#heavenintro img {
  width: 100%;
  height: 100%;

  animation: abnoxious 3s ease-in forwards;
}

#TheGatesOfHeaven {
  /*visibility: hidden;*/
 /* just making shore*/
  margin-bottom: 100%;
}

#TheGatesOfHeaven img {
  object-fit: cover;
  margin-top: 15px;
  width: 100%;
  border-radius: 50px;
}

/* GENERAL FLEX BOXES*/
.mainflex {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  /*background-color: #aaaaaa8b;*/
  gap: 30px;
  margin-top: 2%;
  margin-left: 2%;
  margin-right: 2%;

  animation: fadeIn 3s ease-in forwards;
}

.griddy {
  display: grid;
  grid-template-columns: 15% auto 15%;
  gap: 2%;
  padding-top: 10px;
}

/* Specific Containers */
.users {
  background-color: #ffffffc1;
  border-radius: 100px;
  padding: 0px 75px 0px 75px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: auto;
  margin: 25px 0px 0px 0px;
  
  animation: SlightMoveUpDown 10s ease-in-out infinite;
  position:relative;
}

.feed {
  /*background-color: #ff000056;*/
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: SlightMoveUpDown 20s ease-in-out infinite;
  z-index: 9998;
}

.buttons {
  /*background-color: rgba(0, 255, 255, 0.5);*/
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: SlightMoveUpDown 10s ease-in-out infinite;
}

/*ITEMS WITHIN THE CONTAINERS*/

.useritem {
  margin: 33px 33px 0px 33px;
}

.useritem img {
  object-fit: cover; 
  width: 155px; 
  height: 155px;
}

.useritem p {
  text-align: center;
}

/*feed*/

.post {
  margin: 1px;
  background-color: #ffffffd0;
  padding: 0px 10px 15px 10px;
  border-width: 5px;
  border-radius: 10px;
  border-color: black;
}

/*button*/
.button {
  margin: 1%;
  text-align: center;
  background-color: #ffffffd0;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
}

.button img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  justify-self: center;
}

/*ANIMATIONS*/

@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

@keyframes SlightMoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeOut {
  0%, 50% { opacity: 1; }
  100% { 
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 0.5; }
  100% { 
    opacity: 1;
    visibility: visible;
  }
}

@keyframes abnoxious {
  0%, 50% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1000) rotate(36000deg);
  }
}