
:root {
    --black: #000;
    --white: #fff;
    --yellow: rgb(255, 235, 0);
    --blue: rgb(85, 192, 255);
    --red: rgb(230, 80, 15);
    --gray: rgb(244, 244, 244);
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

body {
    font-family: 'MessinaSansWeb', 'Arial', sans-serif;
    font-weight: 500;
    grid-template-rows: 1fr 518px;
    grid-template-columns: 4fr 3fr;
}

.fixed {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    display: grid;
    place-content: center;
}

.meta {
    z-index: 100;
    position: fixed;
    bottom:0;
    left:0;
    background-color: white;
}

.fixed time {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
    padding: 0 5px;
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.slide {
    position: fixed;
    inset: 0;
}

time {
    font-variant-numeric: tabular-nums;
    text-align: center;
    font-size: 42px;
}

iframe {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}