*{
    margin:0px;
    padding:0px;
}
.main{
   
    display:flex;
    justify-content:center;
    align-items:center;
    width:100vw;
    height:100vh;
    font-size:xx-large;
    color:aliceblue;
    background-color: #121212;
    overflow-x: hidden;
}
.texts{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap: wrap;
    font-size: 36px;
    animation: anim forwards 8s;
}
.main::before{
    content: '';
}
@keyframes anim{
    from{
        opacity: 0.1;
    }
    to{ 
        opacity: 8;
    }
}