body {
    font-family: Tahoma, sans-serif;
    background: linear-gradient(to right, #009fff, #ec2f4b);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin: 0;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#realTimeClock, #currentDate {
    font-size: 18px;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 4px solid #fff;
    margin: 20px 0;
}

.welcome-message {
    font-size: 24px;
    font-weight: 300;
    margin: 20px 0;
}

.input-container {
    margin: 20px;
}

input {
    padding: 5px;
    margin: 10px;
}

button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #ddd;
}

.box {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    width: 90%;
    max-width: 600px;
    color: #fff;
}

.hidden {
    display: none;
}

.music-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
}

.music-controls select {
    margin: 10px;
    border-radius: 5px;
}

.music-controls button {
    border-radius: 5px;
    margin-top: 10px;
}

.music-controls #currentTrack {
    margin-top: 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links a {
    margin: 10px;
}

.social-links img {
    width: 40px;
    height: 40px;
}

.button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

footer {
    margin-top: 20px;
}
