.container {
    position: relative;
    max-width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    
    border-radius: 100%;
    overflow: hidden;
}

.text {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.primary {
    color: #fff;
    background-color: #EE4459;
    border-radius: 100%;
}

.secondary {
    background-color: #fff;
    color: #EE4459;
    border: 1px solid #EE4459;
    border-radius: 100%;
}

.image {
    background-size: cover;
    background-position: center center;
    border-radius: 100%;
    width: 100%;
    height: 100%;
}