body {
    margin: 0;
}
.container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    height: 100vh;

    .image {
        width: 10rem;
        background: white;
        padding: 1.6rem 2rem;
        border-radius: 50%;
    }

    .text-content {
        font-family: avenir, serif;

        .title {
            text-align: center;
            font-size: 36px;
            font-style: normal;
            font-weight: 900;
            line-height: normal;
        }

        .text {
            color: #304052;
            text-align: center;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }
    }
}

@font-face {
    font-family: 'avenir';
    src: url('avenir-medium.ttf');
}