html,
body {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

.pTop {
    margin: 10px 20%;
}

.pTop img {
    width: 100%
}

.mainContent {
    position: relative;
}

#pMainBack {
    width: 100%;
}

.regBtn {
    position: absolute;
    bottom: 20%;
    left: 18%;
    width: 17%;
    cursor: pointer;
}

.tagContent img {
    width: 100%;
}

.giftContent img {
    width: 100%;
}

.pDescriptionContent img {
    width: 100%;
}
.footerContent{
    margin-bottom: 100px;
}
.footerContent img {
    width: 100%;
}

#mTop {
    display: none;
    width: 100%;
}

#mMain {
    display: none;
    width: 100%;
}

#mTagInfo {
    display: none;
    width: 100%;
}

#mGift {
    display: none;
    width: 100%;
}

#mDescription {
    display: none;
    width: 100%;
}

#mfooter {
    display: none;
    width: 100%;
}

.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 20px;
    background: #ffffff;
    z-index: 1001;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

label img {
    width: 30px;
}

.popGap {
    border-bottom: 1px solid #bbb;
    margin: 20px 0;
}

.formItem {
    display: flex;
    align-items: center;
}

.formItem input {
    width: 100%;
    border: 0;
    outline: none;
    font-size: 20px;
}

.formItem button {
    white-space: nowrap;
    background-color: #ff4500;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border: 0;
}

#register {
    background-color: #ff4500;
    text-align: center;
    margin: 30px 10% 0 10%;
    font-size: 25px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 0;
    cursor: pointer;
}


.footerReg {
    display: none;
    position: fixed;
    z-index: 9;
    bottom: 5%;
    text-align: center;
    left: 0;
    right: 0;
    max-width: 800px;
    margin: 0 auto;
}

.footerReg img {
    width: 95%;
    animation: resize 1s infinite;
}

@keyframes resize {

    0%,
    100% {
        width: 95%;
    }

    50% {
        width: 90%;
    }
}


.footerBar {
    background: linear-gradient(180deg, #F03C4C 0%, #F85C50 100%);
    padding: 12px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 200;
    /* padding: 20px 0; */
}

.footContainer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
}

.footContainer p {
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 0;
    color: #fff;
}

.footerFixed .footerFixed-btn {
    width: 250px;
    height: 55px;
    font-size: 24px;
    line-height: 54px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    background-color: rgb(248, 150, 0);
    font-weight: 700;
    letter-spacing: 2px;
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 999px;
}

.cursor-pointer {
    cursor: pointer;
}



@media (max-width: 900px) {
    #mTop {
        display: block;
    }

    .pTop {
        margin: 10px 10%;
    }

    #pTop {
        display: none;
    }

    #mMain {
        display: block;
    }

    #pMainBack {
        display: none;
    }

    #mTagInfo {
        display: block;
    }

    #pTagInfo {
        display: none;
    }

    #mGift {
        display: block;
    }

    #pGift {
        display: none;
    }

    #mDescription {
        display: block;
    }

    #pDescription {
        display: none;
    }

    #mfooter {
        display: block;
    }

    #pFooter {
        display: none;
    }

    .regBtn {
        position: absolute;
        bottom: 10%;
        left: 12%;
        width: 35%;
        cursor: pointer;
    }
    .modal{
        width: 70%;
    }
    .footerReg{
        display: block;
    }
    .footerBar{
        display: none;
    }

}