main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

.wheelCard {
    max-width: 70vw;
    height: 60dvh;
    border: var(--border) solid var(--gold);
    border-radius: 4vmin;
    background: var(--light);
    color: var(--navy);
    text-align: center;
    padding: 0 2vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.slotFrame {
    position: relative;
    border: var(--border) solid var(--gold);
    border-radius: 2vmin;
    background: var(--navy);
    height: 15vmin;
    width: 50vw;
    padding: 0;
    overflow: hidden;
}

.slotWindow {
    position: relative;
    height: 15vmin;
    overflow: hidden;
}

.namesTrack {
    will-change: transform;
}

.teacher-name {
    height: 15vmin;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Serif Display", serif;
    font-size: 7.5vmin;
    line-height: 1;
    color: var(--light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slotFade {
    position: absolute;
    left: 0;
    right: 0;
    height: 35%;
    z-index: 2;
    pointer-events: none;
}

.slotFadeTop {
    top: 0;
    background: linear-gradient(to bottom, var(--navy), transparent);
}

.slotFadeBottom {
    bottom: 0;
    background: linear-gradient(to top, var(--navy), transparent);
}

.countdown {
    font-size: 3dvh;
    font-weight: bold;
}