* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neonBlue: #66fcf1;
    --orange: #ff652f;
    --neonPink: #ce12be;
}

body {
    font-family: 'Lato', sans-serif;
}


.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.animate-list {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    list-style: none;
    overflow: hidden;
}

.li-character {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 10px;
    height: 10px;
    color: var(--orange);
    transition: .2s linear;
    animation: floatUp 5s linear;
}

@keyframes floatUp {
    0% {
        opacity: 0.9;
    }

    100% {
        bottom: 50%;
        opacity: 0;
    }
}

.header h1,
.header h2 {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    color: var(--neonBlue);
    text-align: left;
    letter-spacing: 2px;
    font-size: 40px;
    z-index: 1;
}

.header h2 {
    top: 40%;
}

.attribute {
    color: var(--orange)
}

.specialChar {
    color: var(--neonPink);
}

@media (max-width:1000px) {

    .header h1,
    .header h2 {
        font-size: 25px;
    }

    .header h1 {
        top: 20%;
    }

    .header h2 {
        top: 40%;
    }
}
