* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #111;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.container {
    position: fixed;
    inset: 0;

    display: flex;
    gap: 6px;

    padding: 6px;
    overflow: hidden;
}

.column {
    flex: 1;
    will-change: transform;
}

.card {
    background: white;
    color: black;

    border: 0px solid black;

    margin-bottom: 6px;
    padding: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;
    font-weight: bold;
}

.small {
    height: 150px;
}

.card:not(.small):not(.large) {
    height: 250px;
}

.large {
    height: 450px;
}

.name-column {
    width: 120px;
    flex: none;
}

.name-card {

    width: 100%;
    height: 400px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: -1px;

    padding: 200px 0;

    font-size: 6rem;
    font-weight: 900;

    writing-mode: vertical-rl;

    will-change: transform;
}