/* @import url(https://fonts.google.com/specimen/Montserrat);
@import url(https://fonts.google.com/specimen/Fraunces);
@import url(Montserrat/Montserrat-VariableFont_wght.ttf); */

@font-face {
    font-family: Montserrat;
    src: url(Montserrat/Montserrat-VariableFont_wght.ttf);
}
@font-face {
    font-family: Fraunces;
    src: url(Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
}
body{
    background-color: hsl(30, 38%, 92%);
    align-items: center;
}

.container{
    display: flex;
    margin: 15% 30% 0% 30% ;
    align-items: center;
    background-color:  hsl(0, 0%, 100%);
    width: 500px;
    height: 400px;
    border-radius: 10px;
}

.image, .pricing{
    width: 300px;
    height: 400px;
    overflow: hidden;
}
.image img{
    width: 300px;
    height: 400px;
    border-radius: 10px;
}

.pricing{
    padding: 2% 2% 2% 3%;
    
}

.pricing h6{
    font-family: Montserrat;
    letter-spacing: 7px;
    color: hsl(228, 12%, 48%);
}

.pricing h1{
    font-family: Fraunces;
    font-weight: 700;
}

.pricing p{
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 700;
    color: hsl(228, 12%, 48%);
}

.pricing .prices{
    display: flex;
    align-items: center;
    font-family: Fraunces;
    font-weight: 700;
}

.pricing .prices div {
    margin: 2%;
}
.pricing .prices .one{
    font-size: 22px; 
    color:  hsl(158, 36%, 37%);
}

.pricing .prices .two{
    font-size: 10px;
    color: hsl(228, 12%, 48%)
}

button {
    width: 200px;
    height: 50px;
    margin: 2%;
    padding: 7px 5px;
    border-radius: 20px;
    border: 0;
    background-color:  hsl(158, 36%, 37%);
    color:  hsl(0, 0%, 100%);
    font-family: Montserrat;
    font-weight: 700;
}
.attribution { font-size: 11px; text-align: center; align-self: center; margin: 5%; }
.attribution a { color: hsl(228, 45%, 44%); }

@media only screen and (max-width: 375px) {
    .container{
        display: block;
        height: 725px;
        width: 325px;
        margin: 2% 5%;
    }
    .pricing{
        padding: 0% 5%;
        margin: 0;
        height: 425px;
    }
    .pricing p{
        padding: 2%;
    }
    .image{
        width: 325px;
        height: 300px;
    }
     .image img{
        width: 325px;
        height: 300px;
        border-radius: 10px 0px ;
        margin-bottom: 0;
        overflow: hidden;
    }
    .pricing .prices .one{
        font-size: 30px;
    }
    
}