.screen {
    display: none;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    place-items: center;
}

.spotlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    grid-column: 4 / 10;
    grid-row: 4 / 10;
    width: 100%;
    font-size: x-large;
    text-align: center;
}

.form {
    width: max-content;
    margin: auto;
}

.splash img, .parmesan img {
    object-fit: cover;
    max-width: 30vw;
    max-height: 30vh;
}

.screen.selected {
    display: grid;
}

.screen.shown {
    display: grid;
}

.tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 22px;
}

.tab {
    width: 200px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid darkgoldenrod;
    background-color: lightgoldenrodyellow;
    color: black;
    margin: auto;
    text-align: center;
    padding: 8px;
    cursor: pointer;
}

.tab.selected {
    background-color: plum;
}
