.main {
    font-family: monospace;
    display: flex;
    flex-wrap: wrap-reverse;
    height: 100vh;
}

.sidebar {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-me {
    order: 1;
    width: 45vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.picture-container {
    order: 2;
    width: 45vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-picture {
    border-radius: 50%;
    max-width: 100%;
    max-height: 500px;
    z-index: 1;
}

.sidebar>ul {
    padding: 0;
}

.sidebar>ul>li {
    list-style-type: none;
    padding: 10px 0;
}

.about-me>ul {
    padding: 0;
}

.about-me>ul>li {
    list-style-type: none;
    display: inline-block;
    
}

.about-me>ul>li>a>img {
    height: 20px;
    max-height: 20px;
    padding: 0 5px;
}

.about-me>.name {
    font-size: 40px;
    text-align: center;
}

.sidebar .sidebar-link {
    border-radius: 50%;
    border: none;
    height: 30px;
    width: 30px;
    background-color: #71506e;
}

.sidebar .sidebar-link img{
    height: 20px;
    max-height: 20px;
}

body {
    height: 100vh;
    background-color: black;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    z-index: 0;
    overflow: hidden;
}

.type-anim-container {
    font-size: 0.85em;
}

.type-anim-container>.type-anim-text {
    border-right: 0.08em solid rgb(182, 182, 182);
    animation: blink 1s;
    animation-iteration-count: infinite;
    animation-delay: 500ms;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}







