body {
    text-align: center;
    background-image: url(pinkwater.JPG);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0 auto;
    
    -webkit-text-stroke-width: 2px;
    font-family:'Morris Sans W01 Medium';
    font-weight: normal;
    font-style: normal;
    font-size: 3em; 
    background-color: #fff;
    color: #fff;
}

header {
    background-image: url("PHOTOS/oip2.jpg");
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    font-size: 3em;
    color: #000;
    padding: 40px;
    margin: 0;
    text-align: center;
}

nav {
    display: block;
    justify-content: center;
    font-size: 1em;
    background-color: #0000ff;
}

nav a {
    color: #ffffff;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

nav a:hover {
    background-color: #000;
    color: #fa0000;
}

main {
    padding: 20px;
    max-width: 60vw;
    margin: 0 auto;
    box-sizing: border-box;
}

footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 0px;
    position: fixed;
    width: 100%;
    bottom: 20px;
}

h2 {
    text-decoration: overline underline;
    font-size: clamp(16px, 32px, 48px);
}

a {
    color: blue;
}

p {
    font-size: clamp(8px, 24px, 2em);
}

img {
    max-width: 85%;
    margin: 3% 1%;
}

.cryptic-text {
    margin: 5% 5%;
    font-style: normal;
    font-size: clamp(8px,16px,32px);
    color: #ffffff;
    outline: white inset;
    background-image: url(tvstatic.gif);
    background-size: cover;
    padding: 2%;
}

.space {
    border: white dashed 5px;
    background-image: url(beyond.gif);
}

.contact-a {
    font-size: clamp(8px, 16px, 24px);
    color: yellow;
    overflow-wrap: break-word;
}

.div-box {
    background-image:url(rusty_metal.png);
    border:white double;
}

.logo {
    max-width:100%;
    margin:0 auto;
}

@media only screen and (max-width: 600px) {
    main {
        margin: 0 auto;
        max-width:100vw;
    }
}

.audio-player {
    position: relative;
    width: 100%;
    background: #2e2e2e;
    padding: 10px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-top: 2.5px solid #4a4a4a;
    border-bottom: 2.5px solid #4a4a4a;
    border-radius: 6px 6px 0 0;
    background-image: url('https://www.transparenttextures.com/patterns/rocky-wall.png');
    position: fixed;
    bottom: 0;
    right: 0;
    left: 20;
    width: 100%;
}

.audio-player button {
    background-color: red;
    border: 2px solid #8b0000;
    padding: 10px;
    margin: 3px; 
    cursor: none;
    font-size: 18px;
    color: #8b0000;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
    background-image: url('https://www.transparenttextures.com/patterns/rocky-wall.png');
}

.audio-player button:hover {
    transform: scale(1.2);
    background-color: #8b0000;
    color: #0d0d0d;
}

.audio-player input[type="range"] {
    width: 70%; 
    cursor: none;
    background: #4a4a4a;
    border-radius: 10px;
    appearance: none;
}

.audio-player input[type="range"]::-webkit-slider-thumb {
    background: #2e2e2e;
    border: 3px solid #0d0d0d;
    border-radius: 50%;
    cursor: none;
    appearance: none;
}

.abstract-symbol-left {
    width: 20px;
    height: 20px;
    background: #02e0d9;
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 55% 100%, 0% 50%, 52% 0);
}

.abstract-symbol-right {
    width: 20px;
    height: 20px;
    background: #02e0d9;
    clip-path: polygon(48% 0, 100% 50%, 52% 100%, 0 100%, 25% 48%, 0 0);
}

.abstract-symbol-play {
    width: 20px;
    height: 20px;
    background: #02e0d9;
    clip-path: polygon(25% 0%,0% 100%,100% 55%);
}

.hidden-link {
    display: none;
}


@media (min-width: 768px) {
    body {
        font-size: 1.5em;
    }

    nav {
        flex-direction: row;
    }

    nav a {
        padding: 14px 20px;
        font-size: 1.2em;
    }

    .audio-player {
        flex-direction: row;
        padding: 10px;
    }

    .audio-player input[type="range"] {
        width: 50%;
    }
}
