/* MOBILE FIRST */

/* General Layout */
.content-container {
    text-align: center;
    padding: 1.5rem;
}

/* Typography */
.main-title {
    font-size: 3rem; /* Smaller for mobile */
    margin: 0;
}

.sub-title {
    font-size: 1.5rem; /* Smaller for mobile */
    margin: 0.5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    border: 2px solid currentColor;
    margin: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: none;
}

.btn:hover {
    opacity: 0.8;
}

.btn-large {
    /* Additional styles for large buttons if needed */
}

/* Disabled Button */
.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* QR Section */
.qr-section {
    margin-top: 2rem;
}

img {
    max-width: 50%;
    height: auto;
}


/* LARGER DEVICES */
@media (min-width: 768px) {
    .content-container {
        padding: 2rem;
    }

    .main-title {
        font-size: 6rem;
    }

    .sub-title {
        font-size: 3rem;
    }

    .btn {
        padding: 0.25rem 0.5rem;
        font-size: 3rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

}