body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7a1f2f; /* Main logo color */
    color: #ffffff; /* Accent color for text */
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

#clock {
    padding: 2vw; /* Increased padding for a larger appearance */
    border: 0.5vw solid #e62442; /* Accent color for border */
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    box-shadow: 0 0 10px #e62442, inset 0 0 10px #e62442; /* Accent color for shadow */
    text-align: center;
    font-size: 15vw; /* Significantly increased font size for larger display */
}

#music-controls {
    margin-top: 20px; /* Adjust as needed */
    text-align: center;
}

#music-controls button {
    font-size: 1vw;
    padding: 10px;
    margin: 5px;
    background-color: #e62442; /* Accent color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#music-controls button:hover {
    background-color: #7a1f2f; /* Main logo color for hover effect */
}
