* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;

}

.container {
    width: 100%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.order-info p {
    font-weight: 400;
    color: #4a4a4a;
}

p span {
    font-weight: 500;
    color: #060606;
}

.bosqqr {
    margin-bottom: 50px;
}

h1 {
    margin-top: 100px;
    font-size: 34px;
    color: #333;
    margin-bottom: 0px;
    text-align: center;
}

.order-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.order-info span {
    font-weight: lighter;
}

.image-container {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container button {
    width: 100px;
    padding: 10px;
    font-size: 16px;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
}

.button-container button:hover {
    background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    .order-info p {
        font-size: 14px;
    }

    .image-container img {
        max-width: 250px;
    }

    .button-container button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    .order-info p {
        font-size: 13px;
    }

    .image-container img {
        max-width: 200px;
    }

    .button-container button {
        font-size: 12px;
    }
}
