@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0px;
    font-family: 'Figtree', sans-serif;
}

#wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F4D04E;
}

.container {
    border: 2px solid black;
    width: 400px;
    padding: 30px;
    line-height: 150%;
    border-radius: 30px;
    box-shadow: 8px 8px 16px rgba(0,0,0,1);
    background-color: #FFFFFF

}

.container > div {
    margin-bottom: 1rem;
}

.image {
    
    display: flex;
    justify-content: center;
}

.image img {
    border-radius: 10%
}

h3 {
    background-color: #F4D04E;
    width: 5em;
    padding: 5px;
    font-size: 14px;
    border-radius: 10px;
    font-weight: 900;
    text-align: center;
}

.title h2 {
    font-size: 24px;
}

.paragraph p {
    font-size: 16px;
    color: #6B6B6B;
    font-weight: 500;

}

.author img {
    float: left;
    
}

.author p {
    position: relative;
    top: 20px;
    left: 15px;
    font-size: 14px;
    font-weight: 900;
}