
/* ===================================================
WELCOME SCREEN
=================================================== */

#welcome-screen{
position:fixed;
inset:0;
background:#090909;
display:none;
align-items:center;
justify-content:center;
z-index:9998;
opacity:0;
transition:.6s;
}

#welcome-screen.show{
display:flex;
opacity:1;
}

.welcome-content{
width:100%;
max-width:420px;
padding:40px;
text-align:center;
animation:welcomeUp .8s ease;
}
.welcome-logo{
margin-bottom:40px;
}

.logo-circle.small{
width:54px;
height:54px;
margin:auto;
margin-bottom:18px;
}

.welcome-logo h1{
color:white;
font-size:28px;
margin:0;
font-weight:700;
}

.welcome-content h2{
color:white;
font-size:42px;
line-height:1.15;
margin:0;
font-weight:700;
}

.welcome-content p{
margin-top:18px;
color:#888;
font-size:17px;
line-height:1.6;
}

#btn-get-started{
margin-top:55px;
width:100%;
height:58px;
border:none;
border-radius:18px;
background:white;
color:black;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:.25s;
}

#btn-get-started:hover{
transform:scale(.98);
}



