html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    zoom: 1.4;
}
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95%;
}
.content div {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}
.links img {
    width: 100px;
    margin: 25px;
    transition: transform 0.25s ease;
}
.links img:hover {
    cursor: pointer;
    transform: scale(1.15);
}
.links a:hover {
    cursor: default;
}
#twitter, #twitter:link, #twitter:visited, #twitter:active {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
}
#twitter img {
    width: 20px;
    height: 20px;
    padding: 5px;
    transition: transform 0.25s ease;
}
#twitter img:hover {
    cursor: pointer;
    transform: scale(1.2);
}

#flourish {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 80%;
}
.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border: none;
    padding: 15px;
    width: 200px;
}

.ap-play {
    background: none;
    border: none;
    color: #fff;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ap-time {
    font-size: 13px;
    flex-shrink: 0;
    min-width: 28px;
}

.ap-seek {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 14px;
    margin: 0;
    cursor: pointer;
}

.ap-seek::-webkit-slider-runnable-track {
    height: 1px;
    background: #fff;
}
.ap-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 2px;
    height: 14px;
    background: #fff;
    margin-top: -6.5px;
    border-radius: 0;
}

.ap-seek::-moz-range-track {
    height: 1px;
    background: #fff;
}
.ap-seek::-moz-range-thumb {
    width: 2px;
    height: 14px;
    background: #fff;
    border: none;
    border-radius: 0;
}