* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-image: url("bilder/background.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 30px 0 120px;
}

/* MOTY */
.moty-image {
  width: 260px;
  margin-bottom: 25px;
}

/* WINNER */
.winner-section {
  margin-bottom: 50px;
}

.winner-wrapper {
  width: 220px;
  height: 295px;
  position: relative;
}

/* KRONE */
.crown {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  transform: rotate(20deg);
  z-index: 3;
  pointer-events: none;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  width: 100%;
}

/* CARD */
.card {
  cursor: pointer;
}

/* FRAME */
.image-wrapper {
  position: relative;
  width: 175px;
  height: 235px;
  margin: 0 auto;
}

.photo {
  position: absolute;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  z-index: 1;
}

.frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* VOTES */
.votes-image {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.votes-image img {
  height: 44px;
}


