.records {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin-right: auto;

    width: fit-content;
    height: fit-content;
}

.record {
    width: fit-content;
    height: fit-content;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    font-family: "Tektur";
    text-decoration: none;
    color: var(--text-color);
}

.record:hover .record-name {
    text-decoration: underline;
}

.record-point {
    font-size: 16px;
    margin: auto 0;
}

.record-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 8px;
}

.record-description {
    font-size: 16px;
    font-weight: 500;
    font-family: "Rubik";
    margin: auto 0;
}