*{
    margin: 0;
    padding: 0;

}
body{ 
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
}
.container{
    width: 300px;
    height: fit-content;
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    margin: auto;
    background-color: hsl(0, 0%, 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
}
img{
    border-radius: 25px;
    width: 100%;
}
h1{
    margin: 30px 10px 0px 10px;
    color: hsl(218, 44%, 22%);
    font-size: 20px;
    font-weight: 400, 700;

}
p{
    margin: 30px 10px 10px 10px;
    color: hsl(213, 12%, 70%);
    font-size: 15px;
    font-weight: 400, 700;
}
@media (max-width: 530px) {
    .container{
        width: 75%;
    }
}