.unite-blocks {
  gap: .5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.giveaway {
  overflow: hidden;
  border-radius: var(--br-12);
  position: relative;
  height: 80%;
  background: var(--card);
  display: flex;
  flex-direction: column;
}

.giveaway-head {
  background: var(--bg-thead);
  text-align: center;
  padding: .5rem;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-7);
}

.giveaway-content {
  padding: .5rem;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.giveaway-buttons {
  gap: .4rem;
  display: flex;
}

.giveaway-info {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.giveaway-times, .giveaway-prizes {
  gap: .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.giveaway-time{
  gap: .5rem;
  display: flex;
  justify-content: space-between;
}

.giveaway-time-block {
  height: 5rem;
  width: 6rem;
  border-radius: var(--br-12);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.giveaway-time-time {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-8);
}

.giveaway-time-title {
  color: var(--text-custom);
}

.giveaway-title, .giveaway-prize-title {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-6);
}

.giveaway-peoples {
  color: var(--span);
  background: var(--span-middle);
}

.giveaway-peoples:hover {
  color: var(--span);
  background: var(--span-half);
}