@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Red Hat Display", serif;
}

body, html{
    background: url("../imagens/pattern-background-mobile.svg") no-repeat;
    background-position: top center;
    background-size: 100vw;
    background-color: #dfe7fe;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

main {
    width: 375px;
    height: 570px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 5px 15px 20px hsla(223, 42%, 35%, 0.15);
}

img#pessoa-escutando-musica {
    background: no-repeat center center cover;
    width: 100%;
    height: 23vh;
    border-radius: 20px 20px 0px 0px;
    
}

section#texto {
    padding: 10px;
    margin: 15px;
    text-align: center;
}

section#texto > h1 {
    font-weight: 900;
    color: hsl(223, 47%, 23%);
    margin-bottom: 20px;
}

section#texto > p {
    color: hsl(224, 23%, 55%);
    text-shadow: 0px 0px 5px hsla(224, 23%, 55%, 0.11);
    font-size: 16px;
    text-indent: 20px;
    line-height: 25px;
    font-weight: 500;
}

section#musica {
    padding: 15px;
    margin: 20px;
    border-radius: 10px;
    background-color: hsl(225, 100%, 98%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

section#musica > img {
    padding-right: 20px
}

div#plano-anual {
    display: flex;
    flex-flow: row wrap;
}

div#plano-anual > p {
    flex-basis: 100px;
    color: hsl(224, 23%, 55%);
}

div#plano-anual > p > strong {
    color: hsl(223, 47%, 23%);
    font-weight: 900;
}

section#musica > a {
    font-size: 14px;
    padding-right: 20px;
    font-weight: 800;
}

div#submit {
    height: 50px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 5px;
    background-color: hsl(245, 75%, 52%);
    border-radius: 10px;
    box-shadow: 0px 15px 10px hsla(224, 45%, 67%, 0.308);
    display: flex;
    justify-content: center;
    align-items: center;
}

div#submit > input#pagamento {
    background-color: hsl(245, 75%, 52%);
    color: white;
    border: none;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 15px;
}


div#reset {
    height: 50px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#reset > input#cancelamento {
    background-color: white;
    color: hsl(224, 23%, 55%);
    font-weight: 900;
    border: none;
    font-size: 15px;
}

form:hover {
    cursor: pointer;
}

