body {
    height: 100vh;
    background-color: #ECFBEC;
    background-image: url("../img/vector_line.png");
    background-size: cover;
    background-position: center;
}
#wrap {
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#collect {
    margin-top: 100px;
    width: 100%;
}
.collect_box {
    background-color: #fff;
    max-width: 800px;
    width: 50%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 15px;
    box-shadow: 5px 5px 0px rgba(0, 53, 7, 0.3);
    padding: 80px 0;
}
.collect_text {
    text-align: center;
    width: 100%;
    padding: 20px 60px 0 60px;
}
.collect_text h2 {
    font-size: 30px;
    margin-bottom: 40px;
}
.collect_text img {
    width: 10%;
    min-width: 60px;
    margin-bottom: 60px;
}
/* button */

.button__style {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 60px;
}
.button__style li {
    background-color: #03C75A;
    width: 100%;
    height: 60px;
    cursor: pointer;
    border-radius: 5px;
    border: 0;
    margin: 30px 0;
}
.button__style > li > a {
    text-align: center;
    font-size: 1.1rem;
    display: block;
    color: #fff;
    width: 100%;
    line-height: 60px;
}
/* footer */

#footer {
    width: 100%;
}
#footer p {
    text-align: center;
    font-size: 14px;
    color: #024b23;
}

/* join collect 부분 */

/* media
    1200, 700(애매해서 하나만 추가), 600으로 나누었습니다. 
    600에서는 이미지가 완전히 사라져요
*/

@media (max-width: 1200px){
    .collect_box {
        width: 55%;
    }
    .collect_text {
        padding: 10px 0;
    }
    .button__style {
        width: 50%;
    }
}
@media (max-width: 800px) {
    .collect_box {
        width: 65%;
    }
    .collect_box h2 {
        font-size: 26px;
    }
    .collect_text {
        padding: 10px 0;
    }
}
@media (max-width: 600px) {
    .collect_box {
        width: 70%;
    }
    .collect_box h2 {
        font-size: 22px;
    }
}
@media (max-width: 600px) {
    .collect_box {
        width: 75%;
    }
    .collect_box h2 {
        font-size: 20px;
    }
    .collect_text p {
        font-size: 14px;
    }
    .button__style {
        width: 60%;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}