*{
    margin: 0;
    padding: 0;
    font-family: orbitron;
}
.hero{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(39, 0, 214, 0.8)),(rgba(187, 3, 33, 0.8));
    position: relative;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.loading{
    position: fixed;
    inset: 0;
    z-index: -1;
    border: 0;
}
@media (min-aspect-ratio: 16/9){
    .loading{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9){
    .loading{
        width: auto;
        height: 100%;
    }
}
.bar{
    display: inline-flex;
    margin: 5px;
    align-items: center;
    justify-content: space-between;
}
.logo{
    margin: 10px 30px;
    width: 40px;
    background-color: rgba(255, 251, 0);
    border-radius: 50px;
    padding: 10px;
    transition: 0.4s;
}
.logo:hover{
    transform: scale(0.9);
}
.social{
    display: flex;
    background-color: rgb(255, 251, 0);
    padding: 10px;
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    transition: 0.4s;
}
.social:hover{
    transform: scale(0.9);
}
.heading{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width:768px) {
    .heading{
        max-width: 350px;
    }
}
.heading .static{
    color: yellow;
    font-size: 60px;
}
.heading .dynamic{
    color: rgb(255, 255, 255);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 15px;
    height: 50px;
    line-height: 50px;
    background: rgb(183, 0, 255);
    overflow: hidden;
    border-radius: 1rem;
}
.dynamic li{
    list-style: none;
    font-size: 40px;
    font-weight: bold;
    position: relative;
    top: 0;
    animation: slide 4.5s steps(3) infinite;
}
@keyframes slide {
    100%{
        top: -150px;
    }    
}
.dynamic li span{
    position: relative;
}
.dynamic li span::after{
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(183, 0, 255);
    border-left: 2px solid rgb(241, 245, 0);
    animation: typing 1.5s steps(10) infinite;
}
@keyframes typing {
    100%{
        left: 100%;
        margin: 0 -35px 0 35px;
    }    
}