body {
    height: 100%;
    margin: 0;
    display: flex;
}

#social {
    z-index: 10000;
    position: absolute;
    bottom: 70px;
    right: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#social .links i {
    color:darkgray;
    filter: brightness(80%);
}

#social .links i:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.05);
    filter: brightness(100%);
}

#particles-js {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    /* Very subtle gradient */
    background-image: linear-gradient(to right, #000000 30%, #623f0c 90%);
    /* background-image: radial-gradient(circle at right, #623f0c 10%,#000000 90%); */
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.font-class {
    margin-top: 100px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}

.container {
    margin-left: 10%;
    margin-right: auto;
    margin-top: 200px;
}


.container div {
    color: darkgray;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: .18em;
}

.line1 {
    border-right: .10em solid white;
    animation: typing1 3.5s steps(14, end), blink-caret .5s step-end infinite;
}

.line2 {
    border-right: .10em solid white;
    animation: typing2 8.5s steps(37, end) 3.5s forwards, blink-caret .5s step-end infinite;
    opacity: 0;
}

.line2.show {
    opacity: 1;
}

@keyframes typing1 {
    from {
        width: 0
    }

    to {
        width: 39%
    }
}

@keyframes typing2 {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: white
    }
}