:root {
    --color-background: white;
    --color-text: black;
    --font-family: sans-serif;
    --font-size: small;
    --line-height: 1.5;
}

body {
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: var(--font-size);
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

header {
    font-size: medium;
    font-weight: bold;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

a {
  text-decoration: none;
}

ul, ol {
    line-height: var(--line-height);
}

img.detail {
    max-width: 100%;
    height: auto;
}

img.thumbnail {
    height: 100px;
    width: 100px;
    object-fit: cover;
    margin: 4px;
    border: 1px blue solid;
}

.disc_details {
    margin-left: 1em;
}

.row {
    max-width: min(1080px, 95%);
    margin-bottom: 1em;
}

.fullrow {
    min-width: calc(100% - 2em);
    margin: 0em;
}

.half {
    float: left;
    width: 50%;
}

.column {
    float: left;
    margin: 0.1em;
}

.img_column {
    float: left;
    width: 360px;
    margin-right: 1em;
}

.content_column {
    float: left;
    max-width: 706px;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.browse_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.browse_item {
    text-align: center;
    width: 160px;
    border: 1px lightgray solid;
    margin: 0.25em;
    padding: 0.1em;
    
}

a.browse_item  p {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

a.browse_item  {
    color: var(--color-text);
}

.browse_image {
    max-width: 155px;
    max-height: 155px;
    object-fit: cover;
}

.sitename {display: block;}  
@media screen and (max-width: 600px) {
    .sitename {display: none;}    
}