.page-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.logo {
    height: 60px;
    width: auto;
}

.page-title {
    font-size: 1.8rem;
    margin: 0;
}


.center_box {
    display: flex;
    justify-content: center;
    
}

/*Main box*/
.sure {
    font-family: sans-serif;
    text-align: center;
    color: white;
    padding: 20px 20px;
}

#subscribed_plan {
    background-color: #e6004c;
    padding: 10px 25px 25px 25px;
    margin-top: 20px;
    margin-bottom: 50px;
    width: 20%;
    display: block;
    text-align: center;
    border-radius: 8px;
    line-height: 1.6;
    box-shadow: 0 0 50px #FF0B55;
}

/**/
.details {
    font-size: 18px;
    text-align: center;
}

.song {
    font-size: 20px;
    background-color: #FF0B55;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 80px;
}

.button {
    font-size: 18px;
    background-color: #FF0B55;
    color: white;
    font-weight: bold;
    text-decoration: none;
    /*No underline*/
    text-align: center;
    padding: 30px 30px;
    /*Space inside the button */
    margin: 15px;
    /*Space outside the button */
    display: inline-block;
    /*This way the button can have margin and padding */
    border-radius: 80px;
    transition: color 0.3s ease;
    /*Adds a smooth efect whe passing the cursor on the link */
}


.button:hover{
    background: #980033;
    color: white !important;
}

@media (max-width: 600px) {
    .page-header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        height: 50px;
    }

    .page-title {
        font-size: 1.4rem;
    }
}
