html, body {
    height: 100%;
    cursor: url("normal.png"), auto;
    background-color: black;
    color: lightgrey;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    border-bottom: 1px solid #ccc;
}

.title {
    background-color: #999999;
    color: black;
    padding: 7px;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.clickable {
    margin-left: auto;
    padding: 0 20px;
    cursor: url("hover.png"), pointer;
}

.hidden {
    display: none;
}

.menuItems {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background-color: darkgrey;
    border-left: 1px solid #ccc;
    padding: 10px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.menuItems a {
    color: black;
}

a {
    color: lightgrey;
}

a:hover {
    cursor: url("hover.png"), auto;
}

.musicContainer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 10px;
}

iframe {
    width: 400px;
    height: 166px;
    border: none;
}

.embed {
    width: 400px;
    height: 200px;
}

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

.musicLinks a {
    margin: 0 15px;
}