@import url('https://fonts.googleapis.com/css2?family=Chiron+Sung+HK:ital,wght@0,200..900;1,200..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Playwrite+IN&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Outfit;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(212, 45%, 89%);
    height: 100vh;
    padding: 30px;
}
.container{
    background-color:hsl(0, 0%, 100%);
    width: 350px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px hsl(212, 45%, 89%);
}
img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}
h2{
    font-size: 1.5em;
    color: hsl(218, 44%, 22%);
    margin-bottom: 20px;
}
p{
    font-size: 15px;
    padding-left: 30px;
    padding-right: 30px;
    color: hsl(216, 15%, 48%);
    margin-bottom: 20px;
}
