@font-face {
    font-family: 'lato';
    src: url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Sora:wght@100..800&display=swap');
}

@font-face {
    font-family: 'poppins';
    src: url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'lato', sans-serif;
}

body{
    background-color: #F2F5F9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.container{
    width: 380px;
    height: 500px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 10px rgba(90, 89, 89, 0.185);
}

.title-image{
    width: 100%;
    height: 250px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.overlay{
    width: 100%;
    height: 100px;
    position: absolute;
    top: 175px;
}

.title{
    font-size: 24px;
    margin: 20px 0 15px 30px;
    font-weight: 500;
    font-family: 'poppins', sans-serif;
}

.paragraph{
    font-size: 15px;
    color: #4A5567;
    margin: 0 0 15px 30px;
    line-height: 22.5px;
    font-weight: 500;
}

.author{
    width: 100%;
    height: 100px;
    border-top: 1px solid #b8babd1f;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: flex-start;
    padding-left: 30px;;
    align-items: center;
}

.avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid lightgray;
    box-shadow: 0 0 5px rgba(121, 119, 119, 0.384);
    margin-right: 15px;
}

.author-name{
    color: #111729;
    font-weight: 500;
}

.author-job{
    color: #4A5567;
    font-size: 14px;
}

