#personal-sites img {
    max-height: 31px;
}

/*
table {
    text-align: left;
    border-collapse: collapse;
    border-style: hidden;
    margin: 1em 0;
}

td {
    border: 1px dashed var(--lite);
    padding: 0.5em;
}

td:first-child {
    text-align: center;
}

*/

/** nobutton **/

a.nobutton {
    display: inline-block;
    width: 88px;
    line-height: 100%;
    height: 31px;
    font-size: 10px;
    font-family: "Source Sans";
    padding-top: 10px;
    text-transform: uppercase;
    vertical-align: bottom;
    background-color: var(--pale);
    border: 1px var(--dustyrose) solid;
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    transform: translateY(-5px);
    transition: 0.2s;
    &:hover {
        border: var(--blue) 1px solid;
        border-radius: 10px;
    }
}

/* closeable sections */
article section details {
    padding: 1em;
    border: 1px solid var(--dots);
}

article section h2 {
    margin: 0;
    border-bottom: none;
    &:hover {
        color: var(--vibrant);
    }
}

section > details > summary {
    background: none;
    padding: 0;
    list-style: none;
    &:hover {
        background: none;
        color: var(--blue);
    }
}

article summary::-webkit-details-marker {
    display:none;
}