@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    color:  hsl(223, 47%, 23%); 
    font-family: 'red hat display';
}

body {
    background-color: hsl(225, 100%, 94%);
    background-image: url('../images/pattern-background-desktop.svg ');
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 500px) {
    body {
        background-image: url('../images/pattern-background-mobile.svg');
    }
}

main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;

    text-align: center;
    border-radius: 20px;
    background-color: white;
    width: 375px;
    box-shadow: 0 1em 1em #D6E1FF;
}

.mainIMG {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    height: 100%;
}

article {
    padding: 30px;
}

article > h1 {
    font-weight: 900;
    margin-top: 0px;
}

.plans {
    display: inline-block;
    padding: 20px;
    margin: 20px 0px 20px 0px;
    border-radius: 20px;
    background-color: hsl(225, 100%, 98%);
}

.plans > h1{
    display: inline;
    float: left;
    width: 130px;
    font-size: 16px;
    margin: 0px;
}

.plans > p {
    display: inline;
    float: left;
    width: 130px;
    margin: 0px;
    color: hsl(224, 23%, 55%);
}


.plans > a {
    /* Centralizar texto verticalmente */
    height: 20px;
    line-height : 0px;
    float: right;
    color: hsl(245, 75%, 52%);
    font-weight: bold;
}

.musicICO {
    display: inline;
    float: left;
}


input[type="submit"] {
    display: inline-block;
    margin: 15px auto 15px auto;
    width: 100%;
    padding: 15px;
    background-color: hsl(245, 75%, 52%);
    color: white;
    font-weight: bold;
    border: 1px solid hsl(224, 23%, 55%);
    border-radius: 15px;
    box-shadow: 0em 1.3em 0.5em hsla(245, 75%, 52%, 0.192);
}

input[type="submit"]:hover {
    cursor: pointer;
}

/* Style button PRESSED */
input[type="submit"]:active {
    box-shadow: 0em 0.7em 0.5em hsla(245, 75%, 52%, 0.473);
    transform: translateY(7px);

}


form > a {
    
    margin: auto;
    display: block;
    margin: 15px 0px 15px 0px;
    font-weight: bold;
    text-decoration: none;
    color: hsl(224, 23%, 55%);
}