body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.image-container {
  background: url(im.jpg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.rotate-image {
  transition: transform 0.5s;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.9));
  
  width: 200px;
  height: 213px;
}

body {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}