/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap'); */
/* Link to the boxShadow generator url("https://css3gen.com/box-shadow/") */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: hsl(212, 45%, 89%);

}


.main-container {
    width: 40%;
    padding: 10px;
    margin: 20px auto;
    display: grid;
    justify-items: center;
    row-gap: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 1px 1px 10px -5px black;

}
.outer-container {
    width: 100%;
    border-radius: 10px;

    
}
img {  
    width: 100%;
    border-radius: inherit;
}
.inner-container {
    width: 90%;
    text-align: center;
    padding: 10px;

}
h3 {
    border: none;
    width: auto;
    font-family: sans-serif;
    font-size: 17px;
    margin-bottom: 10px;
}
p {
    font-size: 15px;
    font-family: 'Square Peg', cursive;
    font-weight: 400;
    width: auto;
    margin-bottom: 10px;
}