@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

.container {
    display: flex;
    min-height: 95vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    box-sizing: border-box;
    position: relative;
    width: 154px;
    height: 203px;
    background: #2E353F;
    border-radius: 5px;
    border: 3px solid #4F934A;
}

.name {
    position: absolute;
    left: 8px;
    top: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: #E5E5E5;
}

.title {
    position: absolute;
    left: 8px;
    top: 28px;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 9px;
    line-height: 11px;
    color: #E5E5E5;
}

.avatar {
    position: absolute;
    left: 0;
    bottom: 0;
}

.medal {
    position: absolute;
    left: 78px;
    top: 42px;
}

.number {
    position: absolute;
    right: -2px;
    bottom: -3px;
}