*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'outfit',sans-serif;
    background-color: hsl(212,45%, 89%);

}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100dvh;

}

.container {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    padding: 16px 16px 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 25px 25px 0 rgba(0, 0, 0, 0.04);
    text-align: center;
}

.container_img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 24px;
    
}

.container_title {
   font-size: 22px; 
   color: hsl(218, 44%, 22%);
   font-weight: 700;
   width: 256px;
   margin: 0 auto 16px;
}

.container_text {
    font-size: 15px;
    color: hsl(216, 15%, 48%);
    font-weight: 400;
    width: 256px;
    margin: 0 auto;
}