.vote-screen {
  position: relative;
}

.vote-title {
  text-align: start;
  font-size: 20px;
  margin-top: 24px;
}

.celeb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  position: relative;
  gap: 24px;
}

.person {
  cursor: pointer;
}

.person img {
  height: 250px;
  width: auto;
}

.person-avatar {
  display: flex;
  justify-content: end;
}

.person-2 {
  justify-content: end;
}

.person-name {
  font-size: 30px;
  text-transform: uppercase;
  color: rgb(0, 96, 168);
  text-align: center;
  text-shadow: 2px -2px rgb(255, 255, 255, 0.8);
  margin-top: -32px;
}

#person-2-name {
  text-align: end;
  margin-right: 16px;
}

.vs {
  max-width: 80px;
  position: absolute;
  bottom: -24px;
  left: 56%;
  transform: translate(-56%, 0);
}

.teams {
  display: flex;
  justify-content: space-between;
  margin-top: -16px;
}

.person-team {
  position: relative;
  cursor: pointer;
  animation-name: highlight;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.gifts-title {
  color: rgb(13, 48, 110);
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  text-shadow: 2px 2px #fff;
}

.gifts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}

.gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: end;
}

#gift-2 {
  display: none;
}

.gift-image {
  max-width: 100px;
}

.gift-desc {
  margin-top: 8px;
  color: rgb(13, 48, 110);
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  text-shadow: 2px 2px #fff;
}

.third-input {
  color: rgb(13, 48, 110);
  font-weight: 300;
  display: none;
}

@keyframes highlight {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  33% {
    transform: translateY(-5px);
  }

  66% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-5px);
  }
}
