body{
    overflow-x: hidden;
}

.ootd{
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    position: absolute;
}

.ootd img{
    width: 300px;
    display: block;
    border: dashed darkred 2px;
}

img.one{
    margin-left: -270px;
    animation: breathing 8s infinite;
}
img.two{
    margin-top: -360px;
    margin-left: 50px;
    animation: breathing 8s infinite;
    animation-delay: -500ms;
}
img.three{
    margin-top: -500px;
    margin-left: 400px;
    width: 137px;
    animation: breathing 8s infinite;
}
img.four{
    margin-top: 260px;
    margin-left: -400px;
    animation: breathing 8s infinite;
    animation-delay: -500ms;
}
img.five{
    margin-top: -360px;
    animation: breathing 8s infinite;
    animation-delay: -20ms;
}

img.six{
  animation: breathing 8s infinite;
  animation-delay: -500ms;
  margin-left: -666px;
  }
  
img.seven{
  animation: breathing 8s infinite;
  margin-top: -1150px;
  margin-left: 222px;
  }
  
img.eight{
  animation: breathing 8s infinite;
  animation-delay: -20ms;
  margin-top: -560px;
  margin-left: 800px;
  }
  
img.nine{
  animation: breathing 8s infinite;
  animation-delay: -500ms;
  margin-top: -360px;
  margin-left: 50px;
  }

img.ten{
  animation: breathing 8s infinite;
  animation-delay: -20ms;
  margin-top: -760px;
  margin-left: 550px;
  }
  
img.eleven{
  animation: breathing 8s infinite;
  margin-top: -960px;
  margin-left: 100px;
  }

@-webkit-keyframes breathing {
0% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

25% {
    -webkit-transform: scale(1);
    transform: scale(1);
}

50% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

75% {
    -webkit-transform: scale(1);
    transform: scale(1);
}

100% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}
}

@keyframes breathing {
0% {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

50% {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

75% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

100% {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}
}