.card_main_qr {
    /* position: relative; */
    top: 50%;
    left: 50%;
	margin: 0;
    /* transform: translate(-50%, -50%); */
    font-family: 'Outfit', sans-serif;
	/* background-color: aquamarine; */

}

.card_qr {
	width:50%;
	margin:0 auto;
    width: 280px;
    height: 380px;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
	background-color: #cc9a12;
}

.card_qr {
    animation-name: backgroundColorPalette;
    animation-duration: 2s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
}


@keyframes backgroundColorPalette {
    /* 0% {
        background-color:#e2b84d;
    } */
    /* 25% {
        outline:3px solid #c9960abb;
    }
    50% {
        outline:3px solid #c9960a81;
    }
    75% {
        outline:3px solid #c9960a50;
    } */
    /* 100% {
        background-color: #ac9454cb;
    } */
  }

.image_qr {
    width: 200px;
    height: 200px;
    border-radius: 3px;
    margin: 12px;
	pointer-events: none;
}

.description_qr {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title_qr {
    /* color: var(--dark-blue); */
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px;
	line-height: 1.4;

}

.subtitle_qr {
    color: var(--grayish-blue);
    font-size: 15px;
    padding: 0 10px;
	line-height: 1.6;
}

.attribution_qr {
    color: var(--grayish-blue);
    font-size: 11px;
    margin-top: 10px;
}

.attribution_qr a {
    color: var(--blue);
}

/* Make semi-responsive */
@media (max-width: 700px) {
	.card_main_qr {
		transform: scale(0.8);
   }

}