body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #092925;
}

#juke {
    margin-bottom: 20px;


}

#albumCover {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20%;
    margin: 20px 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 255, 242, 0.2);
}



#artistName {
    font-size: 1.5em;
    color: #333;
}

#songName {
    font-size: 1.2em;
    color: #325b5a;
}

#albumName {
    font-size: 1em;
    color: #1e7575;
}

#controls {
    display: flex;
    gap: 20px;
}

button {
    padding: 15px 30px;
    font-size: 1em;
    background-color: #c4f9f3;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: auto;
}

button:hover {
    background-color: #037e91;
}

.container {
    background-color: rgb(135, 206, 205);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0);
    text-align: center;
}

h1 {
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    font-size: 4rem;
    text-shadow: 1px 3px #54c9d8;
}

.img {
    max-width: 20px;
    max-height: 20px;
}