main {
    display: flex;
    flex-direction: column;
}

.ctrl {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
}

.rec-container {
    background-color: black;
}

.rec {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: calc(100vh - 7rem);
}

.meta {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.meta .entry {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meta .entry label {
    font-weight: bold;
}
