.join-select-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 80vh;
    min-height: -webkit-fill-available;
    /*justify-content: space-around;*/
}
.join-main{
    width: 89%;
    flex : 1;
    margin-top: 10px;
}
.join-main>p{
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}
.join-select-box{
    display: flex;
    justify-content: space-around;
}
.join-img-box{
    width: 120px;
    height: 120px;
    border-radius: 20px;
    border: 3px solid #a6a6a6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.join-img-box.select-img{
    border: 3px solid var(--main-color);
    background: #dcffe3;
}
.join-img-box img{
    width: 100px;
    height: 100px;
}
.join-select p{
    font-size: 2rem;
    margin:10px 0;
    text-align: center;
}
/*
아이폰8, 아이폰 mini
*/
@media all and (max-width:380px) {
    .join-img-box{
        width: 100px;
        height: 100px;
    }
    .join-img-box img{
        width: 90px;
        height: 90px;
    }
}
/**
아이폰 12, 13
 */
@media all and (min-width:261px) {
    .join-img-box {
        width: 120px;
        height: 120px;
    }

    .join-img-box img {
        width: 100px;
        height: 100px;
    }
}
/*아이폰8*/
@media all and (max-height:668px) {
    .join-main{
        margin-top: 100px;
    }
}
/*아이폰 12, 13 mini , 12pro 까지*/
@media all and (min-height:668px) and (max-height:840px ){
    .join-main{
        margin-top: 150px;
    }
}
/*아이폰 12max, 13 , max*/
@media all and (min-height:841px) {
    .join-main{
        margin-top: 200px;
    }
}