*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --white: hsl(0,0%, 100%);
    --Slate300: hsl(212, 45%, 89%);
    --Slate500: hsl(216, 15%, 48%);
    --Slate900: hsl(218, 44%, 22%);
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    /* font-weight: 400; */
    font-style: normal;
    height: auto;
    width: 100%;
    background-color: var(--Slate300);
}
.con{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 5px 10px 10px 10px;
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06) ;
    background: var(--white);
}
.con>div{
    margin: 5px;
    width: 100%;
}
.myimage{
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--Slate500);
}
.myimage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.myinfo{
    text-align: center;
}
p{
    margin: 15px;
}
.title{
    font-weight: 700;
    
}