.education, .experience {
    padding-top: 100px;
}

.listing_container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: var(--text);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px 2px 5px;
}

.listing_element {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 30px;
    margin-top: 50px;
}

.listing_heading {
    display: flex;
    flex-direction: row;

    h3 {
        color: var(--light_gray);
    }
}

.listing_link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    svg {
        width: 30px;
        height: 30px;
        display: inline-block;
        margin-left: 10px;
        text-align: center;
        stroke: var(--light_gray);
    }
}

.listing_link:hover h2 {
    text-decoration: underline;
}

.listing_logo {
    width: 100px;
    height: 100px;
    margin-right: 30px;
    background-color: var(--text);
    border-radius: 50%;
}

.listing_title {
    display: flex;
    flex-direction: column;
}

.listing_profession {
    font-size: var(--size_subheadline);
    color: #eaeaea;
}

.listing_element::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--text);
    border-radius: 10px;
}

.listing_content {
    margin-left: 20px;
    margin-top: 10px;
}