section{
    width: 100%;
    height: fit-content;

    padding-top: 20px;
    gap: 20px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: center;

}

section .info{
    padding: 20px;

    background-color: rgba(255,255,255, 0.07);
    backdrop-filter: blur(10px);

    border-radius: 25px;

    max-width: 50%;

    animation-name: slowAppear;
    animation-duration: 700ms;
    animation-fill-mode: forwards;
}

section .info p{
    color: white;

    text-wrap: break-word;
    font-family: 'Times New Roman', Times, serif;

    text-align: center;
}



.receipt{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;

    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3),rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('../images/reciept.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 20px;

    width: 500px;
    height: 500px;
    
    animation-name: slowAppear;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

.offer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;


    padding: 20px;

    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3),rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('../images/offer.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 20px;

    width: 500px;
    height: 500px;
    
    animation-name: slowAppear;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

.invoice{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;


    padding: 20px;

    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3),rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('../images/invoice.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 20px;

    width: 500px;
    height: 500px;

    animation-name: slowAppear;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}
@keyframes slowAppear {
    0%{
        opacity: 0.3;
        transform: translateY(-10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.receipt h2,
.offer h2,
.invoice h2{
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.receipt p,
.offer p,
.invoice p
{
    font-size: 1rem;
    line-height: 1.6;

    color: white;

    margin-bottom: 25px;
}

.receipt button,
.offer button,
.invoice button
{
    width: fit-content;

    padding: 14px 28px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(135deg,#5b7cff,#7b5cff);

    color: white;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.receipt button:hover,
.offer button:hover{
    transform: scale(1.05);
}

@media screen and (max-width: 600px) {
    section .info{
    padding: 20px;

    background-color: rgba(255,255,255, 0.07);
    backdrop-filter: blur(10px);

    border-radius: 25px;

    max-width: 70%;
    }

    section .info p{
    color: white;

    text-wrap: break-word;
    font-family: 'Times New Roman', Times, serif;

    text-align: start;
    }


    .invoice{
        width: 300px;
        height: 300px;
    }

    .receipt{
        width: 300px;
        height: 300px;
    }

    .offer{
        width: 300px;
        height: 300px;
    }
}