#newyear{
  display: flex;
  flex-flow: column;
  align-items: center;
  max-height: 100vh;
  transition: 0.5s;
  animation:  nyc_popup 0.5s 1 linear 0s;
  overflow: hidden;
}
.nyc_close{
  cursor: pointer;
  position: static;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid #fff;
  box-sizing: border-box;
  width: 200px;
  padding: 0;
  animation:  nyc_popup 1s 1 linear 0s;
  margin: 2vh 0;
}
@media screen and (max-width: 768px){
  .nyc_close{
    width: 40vw;
    font-size: 8vw;
    height: 10vw;
  } 
}
@keyframes nyc_popup {
  0% {
    opacity: 0;
    /*transform: scale(0);*/
  }
/*  70% {
    opacity: 1;
    transform: scale(0.8);
  }*/
  80% {
/*    opacity: 1;
    transform: scale(1.3);*/
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#newyear img{
  height: 70vh;
}

@media screen and (max-width: 768px){
  #newyear img{
    width: 80%;  
    height: auto;  
  } 
}
.nyc_fadeout{
  opacity: 0;
}