/*========================================

CBA Reborn Project

opening.css

Version 1.1

========================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

background:#000;

overflow:hidden;

font-family:Georgia, serif;

}

#opening{

width:100vw;

height:100vh;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

background:linear-gradient(#0c2b73,#000);

}

#logo{

font-size:160px;

font-weight:bold;

letter-spacing:8px;

color:#5db7ff;

text-shadow:

0 0 6px #66b8ff,

0 0 14px #2c7cff;

}

#logo span{

opacity:0;

transition:1s;

}

#subtitle{

margin-top:25px;

text-align:center;

opacity:0;

transition:2s;

}

#subtitle h2{

font-size:28px;

font-weight:normal;

color:white;

letter-spacing:3px;

}

#subtitle p{

margin-top:6px;

font-size:16px;

color:#d8e9ff;

letter-spacing:2px;

}
