html {
    background: radial-gradient(#525354,  #2e2e2e);
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    margin: 0;
    margin-bottom: auto;
    justify-content: space-around;
    /* main color variable */
    --main-color: orange;
}
h1
{
    font-family: "Lavishly Yours";
    font-size: 75px;
    font-style: normal;
    color: var(--main-color);
    margin: 0px;
        transition: 2s;
}
h2
{
    font-family: "Arial";
    font-size: 40px;
    font-style: normal;
    color: #ffffff;

}
.dennis
{
    border-radius: 20px;
    width: 300px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* transform: scaleY(.9);
    transform: scaleX(1.1); */
    transition: 2s;
}

.hidden
{
    transform: rotateY(810deg) scale(.85);
}



main p
{
    font-family: "Arial";
    font-size: 30px;
    font-style: normal;
    color: #ffffff;
    margin: 10px;
    justify-content: center;
    text-align: center;
    transition: 2s;
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.gift-button-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes left-pointer-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25px);
    }
}

@keyframes right-pointer-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25px);
    }
}

.left-pointer {
    animation: left-pointer-bounce 2s ease-in-out infinite;
}
.right-pointer {
    animation: right-pointer-bounce 2s ease-in-out infinite;
}
.gift-button-box p {
    font-size: 50px;
    margin: 0 5px;
}



.gift-button
{
    font-size: 50px;
    font-style: normal;
    color: #2e2e2e;
    background-color: var(--main-color);
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.498);
    animation: pulse 2s ease-in-out infinite;
    text-align: center;
    width: fit-content;
    margin-inline: auto;
}

.balloon.hidden {
    display: none;
}

.balloon {
    position: absolute;
    bottom: -150px;
    height: 150px;
    animation: floatUp 3s infinite linear;
}
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
    }
}

#balloon-1 {
    left: 10%;
    animation-delay: 0s;
}

#balloon-2 {
    left: 50%;
    animation-delay: 1s;
}

#balloon-3 {
    right: 12%;
    animation-delay: .5s;
}
#balloon-4 {
    left: 20%;
    animation-delay: 2s;
}
