#root {
    min-height: 100vh;
    display: grid;
    grid-template-rows: 4.5em 1fr max-content;
    padding: 1em;
}

main {
    display: grid;
    align-items: center;
    text-align: center;
}

.center {
    justify-content: center;
}

.admin {
    align-items: flex-start;
}

header {
    justify-self: flex-start;
}

header svg {
    height: 38%;
}

header h1 {
    font-size: 1.12em;
    font-weight: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0.2em 0;
}

button, .button {
    appearance: none;
    line-height: 1;
    border-radius: 999px;
    border: 1px solid white;
    color: inherit;
    background: none;
    text-align: center;
    padding: 0.5em 1.5em;
    text-decoration: none;
    min-width: 10em;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.2s ease;
    margin: 0 0.25em;
}

button:hover, .button:hover {
    background-color: white;
    color: #3D4550;
    cursor: pointer;
}

.floating-rect {
    position: fixed;
    width: 80vmin;
    height: 80vmin;
    border-radius: 5vmin;
    border: 2px solid rgba(255,255,255,0.2);
    left: 0;
}

.top-rect {
    top: 0;
    transform: translate(-55%, -40%) rotate(45deg);
}

.bottom-rect {
    bottom: 0;
    transform: translate(-64%, 40%) rotate(45deg);
}

.time {
    font-size: 10vmin;
}

.timeDivider {
    font-size: 1rem;
}

.calenders {
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
    gap: 0.5em;
    margin: 1em 0;
}

.cta {
    font-size: 1.5em;
    margin: 1.5em 0;
}

fieldset {
    display: grid;
    border: none;
    grid-template-columns: max-content 1fr;
    align-items: center;
    justify-content: flex-start;
    justify-items: flex-start;
    gap: 0.8em;
    margin-bottom: 2em;
}

label {
    text-align: left;
}

input, select {
    padding: 0.35em 0.5em;
}

.divider {
    height: 0.5em;
    width: 100%;
    grid-column: span 2;
}

footer {
    text-align: center;
    font-size: 14px;
    padding: 20px;
    opacity: 0.5;
    font-weight: 300;
}

.frameWrapper {
    display: grid;
    gap: 0;
    width: 100%;
    max-width: 160vh;
    margin: 0 auto;
}

.chat {
    background: white;
    height: 100%;
    width: 100%;
    min-height: 20em;
}

.ctaWrapper {
    display: grid;
    gap: 0;
    width: 100%;
    max-width: 116vh;
    margin: 0 auto;
    margin-bottom: 3em;
}

.videoWrapper {
    padding: 56.25% 0 0 0;
    position: relative;
    background: black;
}

.ctaVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mode {
    margin-bottom: 2em;
    background: gainsboro;
    color: black;
    padding: 1em;
    border-radius: 0.5em;
}
.mode.live {
    background: orange;
    font-weight: bold;
}

.mode a {
    color: red;
}

.mode.live a {
    color: black;
}