* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#payment_form{
    padding : 20px;
}
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 10px;
}

.hero-container img {
    max-width: 100%;
    height: auto;
}

.hide-hero {
    display: none;
}

h1 {
    text-align: center;
    color: white;
    background-color: black;
    padding: 2.5rem;
    margin-top: 5px;
}

.search-container {
    display: flex;
    align-items: center;
    margin: auto;
    width: 50%;
    margin-top: 30px;
    margin-bottom: 20px;
}

#search-input {
    flex-grow: 1;
    padding: 10px;
    font-size: 18px;
    border: 2px solid #333;
    border-radius: 4px;
}

#search-btn {
    padding: 10px;
    font-size: 18px;
    background-color: #840032;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

#results-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.song-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    width: 200px;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.artwork {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.song-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.artist-name {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    color: #666;
}

.play-btn {
    padding: 8px;
    font-size: 16px;
    background-color: #376996;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.play-btn:hover {
    background-color: #666;
}

.pause-btn {
    padding: 8px;
    font-size: 16px;
    background-color: #65b891;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.pause-btn:hover {
    background-color: #999;
}

#player {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    color: white;
    background-color: black;
    padding: 2.0rem;
    margin-top: auto;
}

#copywrite{
    padding: 50px;
}

@media (max-width: 768px) {
    .search-container {
        justify-content: center;
    }
}