body {
    background-color: black;
    color: white;
    margin: 0;
    height: 100vh; /* Full height */
}

#background {
    background-image: url('https://mymusic.ohodin.com/sites/default/files/inline-images/Ryan%20Brodie.jpeg');
    background-size: cover;
    position: absolute;
    background-position: bottom;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.container-sessions {
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer, footer fixed-bottom bg-primary {
    background-color: lightgray;
    color: black;
    padding: 15px;
      position: absolute;
  bottom: 0;
    height: 180px; /* Adjust height as needed */
}

.player-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    justify-content: center;
    align-items: center; /* Center content horizontally */
}

.button-container {
    display: flex; /* Use flexbox for button alignment */
    justify-content: center;
    gap: 10px; /* Space between buttons */
    margin-top: 10px; /* Margin between player and buttons */
}

.btn {
    background-color: #c11260;
    color: white;
    border-radius: 50%; /* Make buttons round */
    border: none; /* Remove default border */
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.btn:hover {
    background-color: #a50f4d; /* Darker shade on hover */
}

.btn i {
    color: white;
}
