:root {
    --scale: calc(min(0.1 * 100vh, 0.1 * 100vw));
}

html {
    scroll-behavior: smooth;
}

#reloj {
    color: white;
    font-family: "Jost", sans-serif;
    font-weight: normal;
    /*font-size: 2.2rem;*/
    font-size: var(--scale);
    margin: 0;
}

/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900

.jost-<uniquifier> {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

::-webkit-scrollbar {
    display: none;
}

.gris {
    background-color: #B3B2B2;
    /*font-size: 2.2rem;*/
    font-size: calc(var(--scale)/2.8);
    font-weight: normal;
    top: 25vh;
    bottom: 50vh;
    right: 0;
    left: 20vw;
    position: absolute;
}

.dia-fecha {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 43%;
    top: 0;
    bottom: 60%;
    position: absolute;
}

.fecha, #diaSemana{
    display: flex;
}

.container-back {
    width: 80vw;
    height: 100vh;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

.yellow {
    background-color: #FED876;
    height: 100vh;
    width: 33.3%;
    right: 0;
    margin: auto;
    position: absolute;
}

.horiz {
    background-color: #62B9E9;
    width: 100vw;
    height: 30vh;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80vw;
    height: 100vh;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

.Reloj-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30vh;
    width: 63.4%;
    top: 0;
    bottom: 0;
}

.Reloj {
    display: flex;
    align-items: center;
    /*font-size: 10em;*/
    font-size: calc(var(--scale)*1.6);
}

.Reloj p {
    margin: 0;
}

.amarillo {
    background-color: #FED876;
    height: 100vh;
    width: 33.3%;
    margin: auto;
}

.Horario {
    overflow-y: scroll;
    height: 100vh;
    width: 33.3%;
    margin: auto;
    margin-left: 66.7%;
    /*overflow: hidden;*/
}

.barra {
    /*font-size: 5em;*/
    font-size: calc(var(--scale)/2.6);
    text-align: center;
    font-weight: 500;
    height: 12vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.barra p {
    margin: 0;
}

.barra p:nth-child(2) {
    /*font-size: 2.2rem;*/
    font-size: calc(var(--scale)/5.6);
    font-weight: normal;
}

@media only screen and (max-width: 700px){
    
}