.maincont{
    display: flex;
    justify-content: center;
}
.contact-btn{
    margin: 10px;
}
/* Container styles */
.container {
    text-align: center;
    background: #fff;
    padding: 2rem;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: fadeIn 1s ease-out;
}

/* Heading styles */
.container .heading {
    margin: 0;
    color: #333;
}

/* Paragraph styles */
.container .description {
    color: #666;
    margin-bottom: 1.5rem;
}

/* QR Code styles */
.container .qr-code img {
    width: 150px;
    height: 150px;
    border: 5px solid #333;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.container .qr-code img:hover {
    transform: scale(1.1);
}

/* Button styles */
.container .contact-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.container .contact-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.container .contact-btn:focus {
    outline: none;
}
.heading{
    font-size: 25px;
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Default h1 styles */
.heading {
    font-size: 28px; /* Large font size for larger screens */
    text-align: center;
    font-family: copperplgoth bd bt;
    margin: 1rem 0;
    color: #333;
}

/* Responsive styles for smaller screens */
@media (max-width: 1200px) {
    .heading {
        font-size: 20px;
         /* Slightly smaller font size for medium screens */
    }
}

@media (max-width: 992px) {
    .heading {
        font-size: 19px; 
         /* Smaller font size for tablets */
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 18px; 
         /* Even smaller font size for mobile devices */
    }
}

@media (max-width: 576px) {
    .heading {
        font-size:17px; 
         /* Very small font size for very small screens */
    }
}

