h1 {
    color: white;
    margin: 2px;
    padding: 2px;
    border-style: groove;
    border-width: 5px;
    border-right: hidden;
    border-bottom: hidden;
    border-color: white;
    text-align: left;
    font-family: "Courier New", courier, monospace;
}
h1 a {
    color: white;
}
p {
    color: white;
    margin: 20px;
    text-align: left;
}
a:link {
    color: cyan;
    text-decoration: none;
}
a:hover {
    color: magenta;
}
a:active {
    color: yellow;
}
a:visited {
    color: cyan;
    text-decoration: none;
}

em {
    color: yellow;
    font-style: normal;
}
li {
    padding-bottom: 5px;
}
selector:hover {
    color: magenta;
}
body {
    background-color: black;
    color: white;
    font-family: "Courier New", courier, monospace;
}
img {
    max-width: 75%;
    max-height: 75%;
    margin-left: 20px;
}
table {
    display: table;
    border-collapse: separate;
    border-spacing: 10px;
}
th {
    vertical-align: top;
    text-align: left;
}
td {
    vertical-align: top;
}

/* layout */

.headerrow {
    display: grid;
    grid-template-columns: 20%, 80%;
    justify-content: left;
    text-align: left;
}

.container {
    display: grid;
    grid-template-columns: 100px auto 20px;
    padding: 10px;
    margin: 0 auto;
}
.column-left {
    align-content: left;
}
.column-mid {
    align-content: left;
}
.column-mid-longform {
    align-content: left;
    margin-right: 200px;
}
.column-right {
    align-content: left;
}

/*audio player*/
.display-none {
    display: none;
}
.audio-player-container {
    background-color: black;
    border-style: solid;
    padding: 5px;
}

.play {
    color: aqua;
    background-color: black;
    border-color: yellow;
}

.pause {
    color: magenta;
    background-color: black;
    border-color: yellow;
}

.scrub-bg {
    margin: 5px;
    border-radius: 2px;
    border-color: aliceblue;
    border-style: dotted;
}

.slider {
    background-color: black;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    background-color: magenta;
    width: 5px;
    height: 10px;
}
.slider::-moz-range-thumb {
    appearance: none;
    -webkit-appearance: none;
    background-color: magenta;
    width: 5px;
    height: 10px;
}
.slider::-ms-thumb {
    appearance: none;
    -webkit-appearance: none;
    background-color: magenta;
    width: 5px;
    height: 10px;
}

/*gallery*/

.gallery {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(150px, 400px));
    text-align-last: center;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
}
.gallery img {
    width: auto;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.05);
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}
.lightbox .prev,
.lightbox .next {
    height: 50px;
    width: 50px;
    position: absolute;
    transform: translateY(-50%);
    font-size: 2.5rem;
    background-color: transparent;
    color: cyan;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1001;
}
.lightbox .prev {
    left: 20px;
}
.lightbox .next {
    right: 20px;
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: magenta;
    background: none;
    cursor: pointer;
    border: none;
    z-index: 1001;
}

/* responsive */

@media (max-width: 830px) {
    h1 {
        margin: 2px;
        padding: 4px;
        border-width: 5px;
    }

    .gallery {
        display: grid;
        grid-template-columns: 100%;
        padding: 10px;
        margin: 0 auto;
    }
    .column-mid {
    align-content: left;
    margin-right: 0;
}
    .column-mid-longform {
    align-content: left;
    margin-right: 2px;
}
}
