@keyframes jumpLoop {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-15px); }
  40% { transform: translateY(0); }
  60% { transform: translateY(-8px); }
  80% { transform: translateY(0); }
}


.pfp {
    border-radius: 10%;
    width: 100%;
    max-width: 500px;
    max-height: 700px;
}

h1 {
    font-weight: normal;
    font-size: 2.30rem;
}

h4 {
    font-weight: normal;
}

#countdown {
    font-size: 2rem;
    margin-bottom: 20px;
}

#regalo {
    animation: jumpLoop 2s infinite;
    border-radius: 30%;
}
#regalo:hover {
    cursor: pointer;
}

#message {
    margin-top: 20px;
    margin-bottom: 60px;
}

.pill {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 0.4em 1em;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 5px 0px 0px 0px;
}


body {
    text-align: center;
    margin: 6%;
    font-family: 'Instrument Sans', sans-serif;
}