:root{
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-900: hsl(218, 44%, 22%);
    --bg: hsl(216, 90%, 81%);
}

body{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
    font-family:sans-serif ;
}

.container{
    width: 200px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:10px;
    background-color: white;
}

img{
    width: 100%;
    height: 200px;
    border-radius:10px;
}
.text{
    width: 100%;
    padding:0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    text-align: center;
    font-weight: bolder;
    color: var(--slate-900);
    margin-top: 5px;
    margin-bottom:5px;
    font-size:15px;
    width: 200px;
}

p{
    text-align: center;
    line-height: 16px; 
    font-size:12px;
    color: var(--slate-500);
}