.gift-section{
    margin-bottom: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
}

.gift-drone{
    width: 15%;
    animation: drone-movement 1s linear;
}

.gift-text-container{
    animation: grow-in 1s linear;
}

.gift-text{
    font-size: 30px;
    text-align: center;
    background: linear-gradient( 218deg, orange 0%, white 0%, orange 0%);
    border-radius: 21px;
    height: 80px;
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: 1s;
    animation: light-right 5s linear;
    padding: 0px 20px;
}

.gift-text-next{
    animation: none;
    background: none;
    color: black;
    font-size: 25px;
    text-align: center;
    border: 0;
    animation: fade-in 1s linear;
    white-space: normal;
}

.manual-img{
    width: 300px;
    animation: fade-in 1s linear;
}

.manual-text{
    text-align: center;
    animation: fade-in 1s linear;
}

.gift-button-containers{
    white-space: pre-line;
    text-align: center;
}
.gift-line-button{
    font-size: 25px;
    text-align: center;
    background: #2bad03;
    border-radius: 21px;
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    white-space: normal;
    padding: 3px 40px;
}
.gift-line-button:hover{
    background: #38f100;
    transition: 1s;
    cursor: pointer;
    animation: unset;
}
.gift-line-href{
    color: white;
    text-decoration: none;
}
.bigger-text{
    font-size: 40px;
}
.gift-text-next .recommend-special-red{
    font-weight: 700;
}


@media only screen and (max-width: 500px) {
    .gift-section {
        flex-wrap: wrap;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    .gift-text {
        font-size: 18px;
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .gift-drone {
        width: 50%;
    }
    .gift-text-next {
        white-space: pre-line;
    }
    .gift-line-friend{
        padding: 0 20px;
    }
}