body {
    width: 600px;
}

h3 {
    border-bottom: 2px dotted yellowgreen;
}

.blue-border-below {
    border-bottom: 1px dashed lightblue;
}

.work-entry {
    border-bottom: 1px dashed lightblue;
    padding-bottom: 10px; /* Optional: Adds spacing between entries */
    margin-bottom: 10px; /* Optional: Adds spacing between entries */
}

@media only screen and (max-width: 600px) {
    body {
        width: 100%;
    }
}

