@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

body{width:100vw; height:100vh; max-width:100vw; background-color:#000; font-family:'Raleway', sans-serif; color:#F1F7FC; font-weight:300; line-height:100%; padding:0; margin:0;}

p{text-align:center;}
h1{font-size:clamp(24px, 2vw, 48px); font-weight:400; text-align:center; line-height:130%; margin:0 0 1.5vw 0;}
div{position:absolute; left:50%; top:50%; -webkit-transform:translate(-50%, -50%); transform:translate(-50%, -50%); -webkit-animation:fadeIn 1000ms ease; animation:fadeIn 1000ms ease;}
strong{color:#FF6600;}

@keyframes fadeIn {
    from{top:20%; opacity:0;}
    to{top:100; opacity:1;}
}

@-webkit-keyframes fadeIn {
    from{top:20%; opacity:0;}
    to{top:100; opacity:1;}
}