html {
    font-size: 18px;
    font-weight: 400;
}
body {
    background-color: #26091f;
}
.screen {
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
    background: linear-gradient(180deg, #654EA3 0%, #DEAFEA 100%);
    background-image: url(../img/bg.webp);
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 991px) {
.screen {
   background-size: cover;
}
}
body {
    font-weight: 400;
}
body * {
    font-weight: 400;
}
.text-white {
    color: #fff;
}
.header {
    margin: 2rem 0 1rem;
}
.header p {
    margin-bottom: 1rem;
    /* font-size: calc(1rem - 2px); */
}
.text-bold {
    font-weight: 700;
}
.text-shadow {
   text-shadow: -2px 0 0 #000, 0 2px 0 #000, 2px 0 0 #000, 0 -2px 0 #000;
}
.container {
    width: 550px;
    max-width: calc(100% - 2rem);
    padding-left: 0;
    padding-right: 0;
}

footer {
    padding: 0.5rem 0;
    background: #242424;
}
footer a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.step {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: none;
}
.step-1 {
    display: block;
}
.step-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}
.step .item {
    cursor: pointer;
    background: #f00;
    aspect-ratio: 132/172;
    position: relative;
    border: 2px solid #fff;
}
.step .item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.step .item .overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s linear;
}
.step .item.visible .overlay {
    opacity: 1;
}
.step .item.success .overlay {
    background-image: url("../img/success.svg");
}
.step .item.fail .overlay {
    background-image: url("../img/fail.svg");
}

.popup {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    backdrop-filter: blur(5px);
}
.popup-container {
    width: 550px;
    max-width: calc(100% - 2rem);
    background: #fff;
    border-radius: 0.5rem;
    min-height: 100px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 2rem 1rem;
}
.popup-2 .popup-container {
    padding: 0.75rem 1rem 2rem;
}
.popup-container h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.popup-container img {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 1000px;
    object-fit: cover;
    object-position: center;
}
.popup-container .img-match {
    aspect-ratio: 132/172;
    border-radius: 0;
    width: 100%;
    max-width: 260px;
}
@media screen and (min-width: 414px) {
    .popup-container .img-match {
        aspect-ratio: 132/172;
        border-radius: 0;
        width: 100%;
        max-width: 310px;
    }
}



.btn-group {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#confetti {
    z-index: 10000;
    position: relative;
}