*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Yu Gothic","Hiragino Sans",sans-serif;
    background:linear-gradient(135deg,#f5f7fa,#dfe9f3);
    color:#333;
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.container{

    background:#fff;
    width:90%;
    max-width:700px;

    padding:60px 40px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.logo{
    width:180px;
    margin-bottom:30px;

    opacity:0;
    animation:fadeLogo 1.8s ease forwards;
}

@keyframes fadeLogo{

    from{
        opacity:0;
        transform:translateY(-15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

h1{

    font-size:2rem;
    margin-bottom:30px;
    line-height:1.5;

}

.message{

    line-height:2;
    color:#666;
    margin-bottom:40px;

}

.info{

    border-top:1px solid #ddd;
    padding-top:30px;
    color:#444;
    line-height:2;

}
.coming{

    font-size:4rem;
    font-weight:800;
    letter-spacing:8px;

    color:#e6e6e6;

    margin-bottom:15px;

    user-select:none;

}

footer{

    margin-top:40px;
    color:#888;
    font-size:.9rem;

}

@media(max-width:768px){

    .container{

        padding:40px 25px;

    }

    h1{

        font-size:1.6rem;

    }
	    .coming{
        font-size:2.3rem;
        letter-spacing:4px;
    }

}