body {
  overflow: hidden;
  margin: 0;
}

.voting-container {
  width: calc(100vw - 32px);
  height: calc(100vh - 32px);
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  margin: 16px;
}

.voting-menu {
  background-color: #00000040;
  border: 1px solid #00000080;
  border-radius: 4px;
  padding: 16px;
  
  user-select: none;
}

.image-holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  
  margin: 8px 0;
}

.image-container {
  background-color: #00000040;
  border: 1px solid #00000080;
  border-radius: 4px;
  padding: 4px;
  
  width: 128px;
  height: 128px;
}

.voting-image {
  object-fit: contain;
  border-radius: 4px;
  width: 128px;
  height: 128px;
  background-color: #ffffff80;
}

.background-ranking {
  position: absolute;
  width: 128px;
  height: 128px;
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
  z-index: -1;
}

.background-rank {
  font-size: 64px;
  color: #00000040;
}

.background-rank-hashtag {
  font-size: 32px;
  color: #00000040;
  transform: translateY(-10px);
}

.dragged-image {
  position: absolute;
  transform: scale(1.2);
}