@charset "utf-8";
/* CSS Document */

body {
text-align: center;
color: rgba(255,255,255,0.5);
background: #000;
}
div {
padding-top: calc(50vh - 3rem);
height: 100vh;
background: url("../img/back.png") no-repeat center;
background-size: cover;
animation: anim 5s;
}
h1 {
font-size: 5rem;
font-weight: bold;
font-family: 'Bebas Neue', cursive;
margin-bottom: 2rem;
}
@keyframes anim {
0% {
opacity: 0;
}
100% {
opacity: 100%;
}
}