@media (min-width: 1024px) {  
    body {
        background-color: #FFCC2B;
    }
}

@media (max-width: 1023px) {  
    body {
        background-color: #070707;
    }
}

    .start_img {
      -webkit-animation: animate-start 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
              animation: animate-start 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
    }
    
@-webkit-keyframes animate-start {
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
}
    
@keyframes animate-start {
      0% {
        opacity: 0;
      }
    
      100% {
        opacity: 1;
      }
}
  
