/* Universal Values */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000ea;
}

html,
body {
    width: 100%;
    height: 100%;
}
/* Universal Values End */


/* Main */
/* heading */
.qr-main-title {
    padding: 3.8rem 2rem 0rem 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.qr-main-title h2 {
    font-size: 35px;
    font-family: "Abril Fatface", serif;
    font-weight: 100;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.qr-main-title h2:before {
    content: "";
    filter: blur(2px);
    border-radius: 10px;
    position: absolute;
    height: 40%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1b6bd4bd;
    z-index: -1;
}

/* main cards */
.qr-card-conatiners {
    padding: 2rem 0rem 0rem 0rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.qr-card-content {
    height: 100%;
    width: 390px;
    padding: 20px;
    perspective: 1000px;
}

.qr-card-bg {
    padding-top: 40px;
}

/* input */
.qr-input-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    height: 100%;
    width: 100%;
    background: linear-gradient(#1b6bd4bd, white);
    border-radius: 25px;
    padding: 90px;
}

.qr-input-box h3 {
    color: #fff;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0);
    font-family: "Fjalla One", sans-serif;
}


.qr-input-box input {
    background-color: white;
    padding: 10px 22px 10px 22px;
    border: 2px solid black;
    border-radius: 25px;
    text-align: center;
}

.qr-input-box button {
    background-color: white;
    padding: 10px 15px 10px 15px;
    border: 2px solid black;
    border-radius: 25px;
    text-align: center;
}

/* output */
.qr-output-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
    width: 100%;
    background: linear-gradient(#1b6bd4bd, white);
    border-radius: 25px;
    padding: 40px;
    display: none;
}

.qr-output-box h3 {
    color: #fff;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0);
    padding: 0px 0px 0px 0px;
    font-family: "Fjalla One", sans-serif;
}

.qr-output-box .qr-output-img {
    display: flex;
    height: 150px;
    width: 150px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border: 2px solid #333;
    padding: 10px;
    margin: auto;
    border-radius: 20px;
    background-color: white;
}

.qr-output-box button {
    background-color: white;
    padding: 10px 15px 10px 15px;
    border: 2px solid black;
    border-radius: 25px;
    text-align: center;
}
/* Main End */

/* Footer */
.qr-footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Abril Fatface", serif;
    padding: 10px 0px 80px 0px;
}

.dev-credit p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 2px;
}

.dev-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
}

.dev-socials a {
    text-decoration: none;
    color: white;
    font-size: 32px;
}

/* Footer End */

