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

body{

    font-family:Helvetica,Arial,sans-serif;

    background:#090909 url("/images/ncstl-slide.png") center center/cover no-repeat;

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.72);

    backdrop-filter:blur(7px);

}

.coming-container{

    position:relative;

    z-index:5;

    text-align:center;

    color:white;

    width:min(700px,90%);

}

.logo{

    width:95px;

    margin-bottom:40px;

    opacity:.95;

}

.eyebrow{

    display:block;

    letter-spacing:.45em;

    font-size:12px;

    color:#cfcfcf;

    margin-bottom:15px;

}

h1{

    font-size:72px;

    letter-spacing:.15em;

    font-weight:300;

}

.line{

    width:120px;

    height:2px;

    margin:35px auto;

    background:white;

    opacity:.5;

}

p{

    color:#d0d0d0;

    font-size:18px;

    line-height:1.8;

    margin-bottom:45px;

}

.button{

    display:inline-block;

    color:white;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.4);

    padding:18px 40px;

    border-radius:100px;

    letter-spacing:.15em;

    transition:.35s;

}

.button:hover{

    background:white;

    color:black;

}

@media(max-width:768px){

h1{

font-size:44px;

}

p{

font-size:16px;

}

.logo{

width:70px;

}

}