*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{

    background:#0f172a;
    color:white;

}

.container{

    width:900px;
    max-width:95%;
    margin:50px auto;

}

h1{

    text-align:center;
    margin-bottom:30px;

}

.picker{

    text-align:center;

}

#songDisplay{

    font-size:42px;

    padding:50px;

    background:#1e293b;

    border-radius:15px;

    margin-bottom:20px;

    min-height:140px;

    display:flex;

    align-items:center;

    justify-content:center;

}

button{

    padding:14px 25px;

    border:none;

    border-radius:8px;

    cursor:pointer;

    background:#2563eb;

    color:white;

    font-size:16px;

}

.manager{

    margin-top:50px;

}

.add-song{

    display:flex;

    gap:10px;

    margin:20px 0;

}

input{

    flex:1;

    padding:12px;

    border-radius:8px;

    border:none;

}

.song{

    background:#1e293b;

    margin:10px 0;

    padding:15px;

    border-radius:10px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.song button{

    margin-left:10px;

}
.winner{
    animation:pop .4s ease;
}

@keyframes pop{

    0%{
        transform:scale(.8);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }

}