
@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf'); 
  }
  
  @font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
  }

body {
    margin: 0;
    font-family: Poppins-Regular, sans-serif;
    background-color: #f5f5f5;
    color: #333333;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #00aa9d 60%, rgb(94, 0, 216) 70%);
    color: #ffffff;
}

.header {
    width: 100%;
    background: #00aa9d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #ffffff;
    
}

.logo img {
    height: 170px;
}

.info {
    flex-grow: 1;
    margin-left: 20px;
}

.info h1 {
    margin: 0;
    font-size: 3.5em;
    font-family: Poppins-Regular;
}

.info p {
    margin: 5px 0 0;
    font-size: 1.5em;
    font-family: Poppins-Regular;
}

.date {
    font-size: 1.2em;
}

.queue-display {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(25deg,rgb(94, 0, 216) 20%,#00aa9d 100%);
    color: #333333;
}

/*.queue-number {*/
/*    flex-basis: 30%;*/
/*    background-color: #ea6db4;*/
/*    text-align: center;*/
/*    padding: 30px;*/
/*    padding-top: 120px;*/
/*    padding-bottom: 120px;*/
/*    border-radius: 10px;*/
/*    color: #ffffff;*/
/*}*/

/*.queue-number p:first-child {*/
/*    font-size: 2em;*/
/*    margin: -35px 0 35px 0;*/
/*    font-family: Poppins-Regular;*/
/*}*/

/*.queue-number p:nth-child(2) {*/
/*    font-size: 6em;*/
/*    margin: 35px 0;*/
/*    font-family: Poppins-Regular;*/
/*}*/

/*.queue-number p:last-child {*/
/*    font-size: 2em;*/
/*    margin: 40px 0 -30px 0;*/
/*    font-family: Poppins-Regular;*/
/*}*/

.queue-number {
    flex-basis: 30%;
    background-color: #ea6db4;
    text-align: center;
    padding: 30px;
    padding-top: 120px;
    padding-bottom: 120px;
    border-radius: 10px;
    color: #ffffff;
}

.queue-number p:first-child {
    font-size: 2.5em;
    margin: -95px 0 35px 0;
    font-family: Poppins-Regular;
}

.queue-number p:nth-child(2) {
    font-size: 14em;
    margin: 35px 0 35px 0;
    font-family: Poppins-Regular;
    /* animation: blink 1s step-start 0s infinite; */
    animation: blink 2s step-start infinite;
}

.queue-number p:last-child {
    font-size: 2.5em;
    margin: 40px 0 -90px 0;
    font-family: Poppins-Regular;
}

/* Add blinking animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1; /* Visible */
    }

    25%, 75% {
        opacity: 0; /* Invisible */
    }
}

.video-section {
    flex-basis: 50%;
    position: relative;
}

.video-section img {
    width: 100%;
    border-radius: 10px;
}


.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-top: 30px;
    background: linear-gradient(25deg,rgb(94, 0, 216) 20%,#00aa9d 100%);
    box-sizing: border-box;
    color: #ffffff;
}

.poliklinik {
    display: flex;
    justify-content: space-around;
    width: 95%;
}

.poliklinik-item {
    background-color: #ea6db4;
    text-align: center;
    padding: 30px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    flex-basis: 30%;
}

.poliklinik-item p {
    font-size: 3em;
    margin: 0 0 15px 0;
    font-family: Poppins-Regular;
}
