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

html{
    background-color: hsl(225, 100%, 94%);
}
body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background: url('../images/pattern-background-desktop.svg') center center no-repeat;
    background-size: cover;

}

.card-cont {
    background-color: hsl(225, 100%, 98%);
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    font-family: "Red Hat Display", sans-serif;

    max-width: 421px;
    height: 630px;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-top: 10%;
}

.cont .card-cont .img {
    background: url('../images/illustration-hero.svg') center center no-repeat;
    background-size: cover;

    width: 421px;
    height: 222px;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cont .informacoes h1 {
    color: hsl(223, 47%, 23%);
    text-align: center;
    margin-top: 30px;
}

.cont .informacoes p {
    text-wrap: pretty;
    color: hsl(224, 23%, 55%);
    margin-top: 20px;
    padding: 0 40px;
    
}

.cont .card-musica {
    background-color: hsla(222, 63%, 95%, 0.411);
    width: 340px;
    height: 99px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 10px;
    margin-top: 20px;
    padding: 0 20px;
}
.cont .card-musica .card-musica-informacoes {
    display: flex;
    gap: 10px;
}
.cont .card-musica .card-musica-informacoes .musica-informacoes >p {
    font-size: 17px;
    font-weight: 700;
    color: hsl(223, 47%, 23%);
}

.cont .card-musica .card-musica-informacoes .musica-informacoes span {
    color: hsl(224, 23%, 55%);
}

.cont .card-musica a {
    font-weight: 500;
    color: hsl(245, 75%, 52%);
}

.cont .card-musica a:hover {
    text-decoration: none;
}

.cont .decoração-butao {
    background-color: hsl(245, 75%, 52%);
    width: 354px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: hsl(225, 100%, 98%);
    font-weight: 700;
    
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    margin-bottom: 25px;
    transition: 0.5s;

    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.cont .butao .decoração-butao:hover {
    background-color: hsl(245, 77%, 59%);
    
    
}

.cont .butao span {
    color: hsl(224, 23%, 55%);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.cont .butao span:hover {
    color: hsl(223, 47%, 23%);
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }

