
.me-image {
    display: flex;
    flex-direction: row;
    & > halftone-img {
        flex: 1;
        margin: 1ch;
    }
    & > div {
        flex: 2;
    } 
}

.heading {
    text-decoration: underline #2C98FB 3px;
}

body {
    margin: 0;
}

main {
    display: flex;
    flex-direction: row;
}

.divider {
    border: none;
    margin-left: 3px;
    margin-right: 3px;
    border-left: 3px solid black;
}

.divider-top {
    border-left: none;
    border-top: 3px solid black;
}

@media screen and (max-width: 800px) {
    main { 
        flex-direction: column;
    }
    .me-image {
        flex-direction: column;
    }
    .divider {
        border-left: none;
        border-top: 3px solid black;
    }
}
