*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    min-height: 100vh;
    background: linear-gradient(45deg, #fa84d7, #e9db1c);
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;   
    align-items: center;      
    padding: 20px 0;
    gap: 40px;
}

main {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(45deg, #e9db1c, #fa84d7);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 15px;
    gap: 10px;
    border-radius: 10px;
}

main img {
    width: 100%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 3/5;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto 5px auto;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}

section{
    width: 100%;
    max-width: 320px;
    background: #f0f0f03f;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.25);
}

h3{
    color: #6d6565;
    text-align: center;
    font-size: 22px;
}

p{
    color: #262626;
    opacity: 0.7;
    text-align: center;
    margin-top: 8px;
}

.player{
    margin-block: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player button{
    background: none;
    border: none;
    cursor: pointer;
}

.player button i{
    color: #262626;
    font-size: 28px;
}

.progressBar {
    height: 10px;
    background-color: #121212;
    border-radius: 4px;
    overflow: hidden;
}

.progress{
    height: 10px;
    background-color: #505050;
    border-radius: 4px;
}

@media (max-width: 500px) {
    main {
        max-width: 90%;
        padding: 20px 10px;
    }

    main img {
        max-width: 200px;
        aspect-ratio: 3/5;
    }

    section {
        max-width: 90%;
        padding: 18px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .player button i {
        font-size: 24px;
    }

    .progressBar {
        height: 8px;
    }

    .progress {
        height: 8px;
    }
}
