body {
    /*height: 100%;*/
    background-color: white;
    position: relative;
    z-index: -100;
}

#main-container {
    height: 763px;
    /*background-color: #EE821F;*/
    background: url('img/QR-Background.png');
    background-size: cover;
    background-repeat: round;
    z-index: -100;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

#grid-container {
    display: flex;
    grid-template-columns: auto auto;
    margin-top: 50px;
}

#qr-container {
    margin: 0 auto;
    margin-right: 0;
    margin-top: 30px;
    width: max-content;
}

#qr-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    width: 221px;
    height: 221px;
    background-color: white;
    padding: 15px;
}

#store-link-box {
    width: 23%;
    margin: 0 auto;
    margin-left: 3%;
    margin-top: 17px;
    padding-top: 10px;
}

/*#text-me-form{
    display: flex;
    margin-top: 50px;
}*/

#qr-label {
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 33px;
    color: white;
}

/*#text-box {
    border-radius: 8px;
    border-width: 0;
}

#submit {
    margin-left: 20px;
    background-color: black;
    color: white;
    border-radius: 35px;
}

#privacy {
    color: white;
    margin-top: 10px;
}

#privacy-link {
    color: #F9DC1B;
    font-weight: bold;
}*/

.stepper {
    list-style: none;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
    margin-top: 85px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 50%;
}

.number {
    background: #FFC20E;
    text-align: center;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;

    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    color: white;
}

.number:after {
    content: "";
    position: absolute;
    background-color: #FFC20E;
    width: 100%;
    height: 4px;
    top: 20px;
    z-index: -1;
}

.item:not(:first-child) .number:after {
    left: 0
}

.item:last-child .number:after {
    width: 50%
}

.description {
    text-align: center;
    width: 80%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: white;
    margin-top: 15px;
}

#link-to-store{
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;

    display: flex;
    align-items: center;
    margin-top: 30px;

    color: #FFFFFF;
}

#stores{
    display: grid;
    grid-template-columns: auto auto;
    margin-top: 20px;
}

#stores a {
    position: relative;
    z-index: 100;
}

.store-img{
    width: 176px;
    height: 52px;
    border-radius: 50px;
}


/** Media queries */

@media (max-width: 1280px) {
    #store-link-box{
        width: 50%;
    }

    .stepper{
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 460px) {
    #main-container{
        background: #ED7223;
    }

    #grid-container{
        display: block;
    }

    #qr-container{
        margin-right: auto;
        width: max-content;
    }

    #qr{
        width: 100%;
    }

    #qr-img{
        display: inline-block;
        margin-right: auto;
        margin-left: auto;
    }

    #store-link-box{
        width: 95%;
    }

    .stepper .description{
        font-size: 13px;
    }

}
