@font-face {
    font-family: 'kp';
    src: url('/fonts/KoPubWorld\ Dotum\ Light.ttf') format('truetype');
}

body{
    overflow: hidden;
    height: 100vh;
    background: url(../img/bg.png) no-repeat center;
    background-size: cover;
}
.wrap{
    width: 360px;
    margin: 0 auto;
    text-align: center;
}
.wrap .logo{
    margin-top: 60%;
}
.wrap .text{
    font-family: 'kp';
    margin: 20% 0 21% 0;
    font-size: 25px;
    color:#fff;
    line-height: 34px;
}
.wrap .btn-wrap a{
    width: 100%;
    height: 70px;
    color: #000;
    display: inline-block;
    background-color: #fff;
    line-height: 72px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap .btn-wrap a img{
    display: block;
}
.wrap .btn-wrap a:hover{
    background-color: #d6e3e2;
    color: #fff;

}
@media (max-width:900px){
    .wrap .logo{
        margin-top: 150px;
    }
    .wrap .logo img{
        width: 70%;
        max-width: 300px;
    }
    .wrap .text{
        font-size: 20px;
        margin: 15% 0 16% 0;
        line-height: 28px;
    }
    .wrap{
        width: 100%;
    }
    .wrap .btn-wrap a{
        width: 80%;
        max-width: 300px;
        margin: 15px auto;
        height: 60px;
        line-height: 62px;
        font-size: 16px;
    }
    
    
}