@font-face {
  font-family: kidszone2;
  src: url(kids_zone_2.woff);
  font-weight: bold;
}

body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    display: flex;
    height: 100vh;
	font-family: kidszone2;
}

.container {
    width: 100%;
    display: flex;
}

.left-section, .right-section {
    box-sizing: border-box;
    padding: 20px;
}

.left-section {
    flex: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-half, .bottom-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    text-align: center;
}

.logo {
    max-width: 60%;
    height: auto;
    max-height: 100%;
}

.current-time-large {
    font-size: 140px; /* Iets kleiner gemaakt */
    font-weight: bold; /* Vetgedrukt toegevoegd */
    text-align: center;
}

.right-section {
    flex: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.section-header {
    font-size: 76px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}

.hour-bar {
    flex-grow: 1;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 20px;
    height: 80%;
    border-radius: 10px;
    width: 98%;
}

.hour-info {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px;
	font-size: 40px;	
}

.hour-remaining {
    //flex-grow: 1;
    position: absolute;
    right: 0px;
    box-sizing: border-box;
    margin-bottom: 20px;
    height: 100%;
    border-radius: 10px;
    width: 75%;
	font-size: 40px;
}

.bar-space {
    width: 3%; /* 3% ruimte tussen balken */
}

.moving-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  z-index: 1;
}


#hour-bar-1 { background-color: #FF5733; }
#hour-bar-2 { background-color: #33FF57; }
#hour-bar-3 { background-color: #5733FF; }
#hour-bar-4 { background-color: #FF5733; }
#hour-bar-5 { background-color: #FF5733; }
#hour-bar-6 { background-color: #FF5733; }
