/* File: css/style.css */
/* Style the Player Card */

.music-player {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    width: 300px;
    padding: 30px;
    text-align: center;
    margin: 50px auto; /* Centers the card */
    color: #333;
}

/* Album Art styling */
.img-container img {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Makes it a circle */
    object-fit: cover; /* Prevents stretching */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Typography */
h2 { margin: 0; font-size: 24px; }
h3 { margin: 5px 0 20px; font-size: 16px; color: #666; }

/* Buttons */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    margin: 0 15px;
    color: #333;
}

.btn:hover {
    color: #c40000; /* Red on hover */
    transform: scale(1.1); /* Grow slightly */
}
body {
    background-image: url('interium_apartment.jpeg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;
    
    color: whitesmoke;
    font-family: Verdana;
    margin: 0; /* Removes default white border */
}
a {
    color: aliceblue; 
}