body {
    background-color: black;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#openingpage {
    display: flex;
    justify-content: center;
    align-items: center;
}

#openingpage img {
    margin: 0 20px;
}



.menu-links {
    text-align: center;
    margin-top: 30px;
}

.menu-item {
    display: block;
    color: red;
    font-family: 'MS Gothic', 'Courier New', monospace;
    font-size: 24px;
    text-decoration: none;
    border-bottom: 2px solid red;
    margin: 5px auto;
    width: max-content;
}

.menu-item:hover {
    color: #ffcccc;
    border-bottom-color: #ffcccc;
}

@font-face {
    font-family: Nintendo-DS-BIOS;
    src: url('../newjeans/fonts/Nintendo-DS-BIOS.ttf');
}

.music-player {
    position: relative;
    margin-top: 20px;
    width: 300px;
}

.song-title {
    font-family: Nintendo-DS-BIOS;
    font-size: 0.9em;
    color: white;
    text-align: center;
    margin-bottom: 5px;
}

.controls {
    font-size: 18px;
    text-align: center;
    width: 100%;
}

.controls td {
    padding: 0px 5px 0px 5px;
}

.seeking {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5px;
}

.current-time, .total-duration {
    font-family: Nintendo-DS-BIOS;
    font-size: 0.9em;
    color: white;
}

.current-time {
    padding-right: 5px;
}

.total-duration {
    padding-left: 5px;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background-color: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: white;
    border-radius: 1px;
}

input[type=range]::-webkit-slider-thumb {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: white;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: white;
    border-radius: 1px;
}

input[type=range]::-moz-range-thumb {
    border: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower, input[type=range]::-ms-fill-upper {
    background: white;
    border-radius: 2px;
}

input[type=range]::-ms-thumb {
    margin-top: 1px;
    border: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower, input[type=range]:focus::-ms-fill-upper {
    background: white;
}
