body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  transition: background-color 0.8s ease-in-out;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.before-listen {
  background-color: #FFEB3B;  
  color: #333;
}

.after-listen {
  background-color: #000000;  
  color: #FFFFFF;
  opacity: 0;
  transform: scale(1.2);  
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.transform-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.8s ease-in-out;
}

.transform-text {
  font-size: 2.5em;
  margin: 10px 0;
}

.transform-text-sub {
  font-size: 1.2em;
}


.image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.tear {
  position: absolute; 
  width: 12px;
  height: 12px;
  background-color: #3498db; 
  border-radius: 50%;
  opacity: 0;
}

@keyframes fall {
  0% {
    transform: translateY(0); 
    opacity: 1;
  }
  100% {
    transform: translateY(200px); 
    opacity: 0;
  }
}


@media (min-width: 800px) {
  
  body {
    background-color: #000000;
  }
  
  .before-listen {
    opacity: 0;
    transform: scale(0.8);  
  }
  
  .after-listen {
    opacity: 1;
    transform: scale(1);  
  }

  .after-listen .transform-image {
    filter: grayscale(100%);  
    border: 3px solid white;
    margin-bottom: 0;
  }
  
  .after-listen .tear {
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .after-listen .tear:nth-child(1) {
    top: 45%;
    left: 40%;
    animation-duration: 2.2s; 
    animation-delay: 0.5s; 
  }

  .after-listen .tear:nth-child(2) {
    top: 48%;
    left: 68%;
    animation-duration: 2.8s;
    animation-delay: 1.5s;
  }
  
  .after-listen .tear:nth-child(3) {
    top: 46%;
    left: 42%;
    animation-duration: 2.5s;
    animation-delay: 2.1s;
  }

  .after-listen .tear:nth-child(4) {
    top: 49%;
    left: 70%;
    animation-duration: 2.0s;
    animation-delay: 0.1s;
  }
}