@keyframes cursor-blink {
    0% {
        opacity: 0;
    }
}

#about-me {
    margin-top: 15vh;
    margin-bottom: 15vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

#about-me-href {
    position: relative;
    bottom: 6rem;
}

#about-me-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

#aside-content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

#aside-content div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#aside-content div:nth-child(1) p:after {
    content: "";
    width: 3px;
    height: 1rem;
    background: white;
    display: inline-block;
    position: relative;
    top: 0.125rem;
    animation: cursor-blink 1s steps(2) infinite;
}

@media only screen and (min-width: 830px) {
    #about-me {
        flex-direction: row;
        justify-content: space-between;
    }

    #aside-content {
        flex-direction: column;
        justify-content: space-between;
    }

    #aside-content {
        flex: 1;
    }

    #about-me-content {
        flex: 2;
    }
}