body {
    display: flex;
    background-image: url(covers/gif4.gif);
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    margin-left: 3%; /* Remove default margin */
}

.construc-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Distributes space between containers */
    align-items: flex-start; /* Aligns items to the top */
    margin: 0 3%; /* Optional: adds margin around the containers */
}

.container, .container2 {
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
    padding: 20px;
    max-width: 400px; /* Optional: to limit the width of the song list container */
    border-radius: 10px; /* Optional: rounded corners for a smoother look */
}

.construc {
    font-size: 40px;
    font-family: Oxanium;
    text-align: center; /* Center the "Song list" title */
    top: 5px;
}

.construc2 {
    font-size: 40px;
    font-family: Oxanium;
    text-align: center; /* Center the title for container2 */
    top: 5px;
}

/* Apply Oxanium font to list items */
ul, li {
    font-family: Oxanium;
    font-size: 18px; /* You can adjust the size as needed */
    color: black; /* Ensure the text is visible */
}

.ref{
    position: absolute;
    top: 2%;
    right: 2%;
    padding: 10px;
    font-family: Oxanium;
    font-size: 20px;
    background-color:rgba(255, 255, 255, 0.459);
    border-radius:4%;
}