main {
    width: 100%;
}

main > h1 {
    margin-bottom: .8rem;
}

main > p {
    margin-top: 0;
    font-weight: 500;
    font-size: 1.5rem;

    color: #A1A1A1;
}


#history {
    position: relative;

    display: flex;
    flex-flow: column;
    gap: 2rem;

    position: absolute;
    right: 10rem;

    width: 50%;
    max-width: 40rem;
}

#history::before {
    content: ' ';
    position: absolute;
    top: -25%;
    right: .4rem;
    background-color: white;
    width: .1rem;
    height: 150%;
}

.history {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history h2, .history p {
    margin: .5rem 0;
}

.history > .content {
    width: 70%;
    padding: 1rem 2rem;

    background-color: rgba(255, 255, 255, .2);
}

.history > .dot {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;

    background-color: white;
}