.cherry-blossom-container {
  position: relative;
  height: 100%; 
  width: 100%; 
  overflow: hidden; 
}


.petal {
  position: absolute;
  background-color: #ffc0cb; 
  border-radius: 150% 0 150% 0;
  animation: animate-petal 10s linear;
}

.petal::after {
  content: "";
  position: absolute;
  top: -14%;
  left: -10%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffc0cb;
  border-radius: 150% 0 150% 0;
  transform: rotate(15deg);
  z-index: 0;
}


@keyframes animate-petal {
  0% {
    top: 0;
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100vh;
    transform: rotate(3000deg);
  }
}

.insta-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}
.insta-logo{
  text-align: center;
  position: relative;
  z-index: 1;
}
.hoshi{
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .insta-img{
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .insta-img{
    width: 40%;
  }
}
.insta-container p{
  margin: 0;
  padding: 0;
  width: 25%;
  height: 25%;
  background-color: #FCEAFD;
}
.insta-container p a{
  position: relative;
  display: flex;
  padding-top: 100%;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.insta-photo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: cover no-repeat;
}


