/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #23a5d9, #fad0c4);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}
@media screen {
  body {
    
  }
  
}
/* Header */
header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 24px;
}

/* Winners Section */
.winners {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

/* Winner Cards */
.winner-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    margin: 10px;
    border-radius: 15px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.winner-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.4);
}

/* Download Button */
.download-btn {
    background: #0e5fe1;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #ff2b65;
}

/* Footer Styles */
footer {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 5px 0;
}

.designer {
    color: rgb(255, 0, 0);
}

.heart {
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin: 0 5px;
}
.button {
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #4a504e;
  background-color: #217ace;
  overflow: hidden;
  border-radius: 3px;
}

.button, .button__icon, .button__text {
  transition: all 0.3s;
}

.button .button__text {
  transform: translateX(22px);
  color: #fff;
  font-weight: 600;
}

.button .button__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #15557c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button .svg {
  width: 20px;
  fill: #fff;
}

.button:hover {
  background: #15557c;
}

.button:hover .button__text {
  color: transparent;
}

.button:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.button:active .button__icon {
  background-color: #146c54;
}

.button:active {
  border: 1px solid #146c54;
}