@import url('colors.css');

.section {
    border: solid 1px var(--black1);
}
.sectionHeader {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--black1);
}
.sectionHeader > h2 {
    font-size: 20px;
    padding: 0px;
    margin: 0px;
    color: var(--white1);
}
.sectionHeader > a {
    color: var(--white1);
    transition: 0.2s;
    text-decoration: none;

}
.sectionHeader > a:hover {
    color: var(--white1-hover-dark);
    text-decoration: underline;
}