/*cursor stuff*/
body, html, textarea {
cursor: url("https://pwnedby1400.neocities.org/images/Normal-Select.png"), crosshair;
}
a {
cursor: url("https://pwnedby1400.neocities.org/images/Link-Select.png"), pointer;
}
a:hover {
cursor: url("https://pwnedby1400.neocities.org/images/Link-Select.png"), pointer;
}
.help-cursor {
cursor: url("https://pwnedby1400.neocities.org/images/Help-Select.png"), help;
}
.move-cursor {
cursor: url("https://pwnedby1400.neocities.org/images/Move.png"), move;
}
.not-allowed-cursor {
cursor: url("https://pwnedby1400.neocities.org/images/Not-Allowed.png"), not-allowed;
}


/* css style */ 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    background-image: url(https://pwnedby1400.wiki/images/4%20calvin/Background.gif);
    color: #e0e0e0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-content {
    width: 100%;
    max-width: 700px;
    background-color: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    margin-top: -1px 
}

.header-container {
    width: 60%;
    max-width: 700px;
    margin: 20px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: transparent;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px); 
    padding: 0 20px 20px 20px; 
}


.side-image {
    width: 30px;
    height: 30px;
    margin: 0 15px;
}

.top-section {
    display: flex;
    padding: 10px;
    position: relative;
}

.top-section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    bottom: 15px;
    width: 1px;
    background-color: #333;
}

.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    padding-right: 15px;
    padding-top: 20px;
}

.link-button {
    padding: 5px 10px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.link-button:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.music-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    box-sizing: border-box;
}

.music-info-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    width: 100%;
}

.music-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.music-text-info {
    display: flex;
    flex-direction: column;
}

.music-title {
    font-weight: bold;
    margin-bottom: 3px;
}

.music-author {
    font-size: 0.8em;
    color: #aaa;
}

.music-controls {
    width: 100%;
}

audio {
    width: 100%;
}

.divider {
    width: 100%;
    height: 20px;
    margin: 10px 0;
}

.text-area {
    padding: 20px;
    line-height: 1.6;
    text-align: center;
}

.large-image {
    width: 100%;
    height: auto;
    display: block;
}