* {
    color: black;
    -webkit-text-stroke: 1px black;
    cursor: url(https://cur.cursors-4u.net/nature/nat-7/nat617.cur), auto !important;
}

a,
a>*,
button,
.clickable {
    cursor: url(https://cur.cursors-4u.net/symbols/sym-1/sym29.cur), auto !important;
}

a:hover,
a>*:hover,
button:hover,
.clickable:hover {
    text-decoration: underline;
}

html {
    background-color: #7a94c5;
    background-image: url(../images/water.avif);
    background-size: 220px;
}

html {
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 20px;
    width: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0px;
}

.page {
    width: 100%;
    max-width: 36em;
}

.under-construction {
    width: 100%;
    height: 18px;
    background-image: url("../images/underconstruction.gif");
}


.moon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.moon-image-wrapper {
    border: min(3vh, 3vw) solid transparent;
    border-image-source: url("../images/frame.avif");
    border-image-slice: 31;
    border-image-repeat: round;
    border-image-width: min(3vh, 3vw);
}

.moon-image-wrapper img {
    display: block;
    max-width: 30vw;
    max-height: 30vh;
}

.moon-caption {
    flex-basis: 100%;
    text-align: center;
    font-weight: bold;
}

.sidebar-left,
.sidebar-right {
    display: none;
}

@media only screen and (min-width: 1000px) {

    .sidebar-left,
    .sidebar-right {
        display: block;
        position: fixed;
        top: 10px;
    }

    .sidebar-left {
        left: 100px;
    }

    .sidebar-right {
        right: 100px;
    }
}

header h1 img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: blur(1px);
}

#links nav ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

#links nav ul li a {
    display: inline-flex;
    align-items: center;
    font-size: 1.3em;
    text-decoration: none;
    /* border: 4px outset gold; */
    margin: 0.2em;
    /* color: white; */
}

#links nav ul li a:hover {
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 2.5px;
    text-decoration-skip-ink: none;

}

#links nav ul li a img {
    height: 2em;
}

hr {
    border: none;
    /* remove default border */
    border-top: 6px dotted #000;
    filter: blur(1px);
    margin: 2em 0;
}

footer ul {
    display: flex;
    justify-content: space-between; /* or center */
    padding: 0;
    margin: 0;
    list-style: none;
}

footer ul li {
    flex: 1 1 0;           /* evenly distribute width */
    text-align: center;    /* center image in li */
}

footer ul li img {
    height: 80px;          /* choose the desired uniform height */
    width: auto;           /* auto width to preserve aspect ratio */
    display: inline-block;
    object-fit: contain;   /* ensures image fits inside the box without stretching */
    max-width: 100%;       /* never overflow li */
}

.ocean-floor {
    width: 100%;
    overflow: hidden;
}

.ocean-floor svg {
    display: block;
}