html{
    font-size: 62.5%;
}
body{
    font-family: "Red Hat Display", sans-serif;
    margin:0;
    padding:0;
    font-size: 1.6rem;
    background-image: url(/images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-color: #f1faee;
}
.container-box{
    height:auto;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:2%;
    margin-bottom:2%;
    
}
.box-2{
    width:33.5%;
    background-color:white;
    color:black;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow:  1px 10px 100px grey;
}
.illustration{
    width:33.5%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.grid-container{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    align-items:center;
}
h2,h5{
    color:hsl(206, 8%, 18%);
}
h2{
    text-align: center;
}
.para-1{
    text-align: center;
    line-height: 2.5rem;
}
.music{
    margin-left:10%;
}
.change{
    color:#227c9d;
    font-weight:bold;
}
p{
    color:#979dac;
}
button{
    margin:auto;
    display:block;
    background-color: #0466c8;
    color:white;
    padding:5% 30%;
    border-radius:10px;
    font-weight:bold;
    font-size:1.4rem;
    outline:none;
    box-shadow:2px 15px 20px  grey;
}
button:hover{
    background-color: #cddafd;
}
.cancel{
    text-align:center;
    padding:1.5rem 5rem;
    margin-top:5%;
    margin-bottom: 10%;
}
.link{
    text-decoration:none;
    font-weight:bold;
    color:#495057;
}
.link:hover{
    color: #0466c8;
}
@media(max-width:1200px){
    button{
        margin-left:10%;
        margin-right:10%;
    }
}
@media(max-width:900px){
    body{
        /*background-image: url(/images/pattern-background-mobile.svg);*/
        font-size:2rem;
    }
    .para-1{
        line-height:2rem;
    }
    .box-2{
            width:50%;
         }
        .illustration{
            width:50%;
        }
        button{
            margin-left:10%;
            margin-right:10%;
        }
        
}


@media(max-width:600px){
    body{
        font-size:1.5rem;
        margin:20%;
        /*width:375px;*/
        background-image: url(/images/pattern-background-mobile.svg);
    }
    .para-1{
        line-height:2rem;
    }
    .box-2{
        width:100%;
        padding-left:5px;
        padding-right:5px;
    }
    .illustration{
        width:100%;
    }
    button{
        margin-left:5%;
        margin-right:5%;
    }
    

}