/*primary color*/
.bg-cream {
     /*background-color: #FFA000;     */
    background-image: url('../img/dp1.jpg');
    background-size: cover;
    background-attachment: fixed;
    /* height: 100vh; */
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    /* background-color: #F48C06; */
    background-color: #FAA000;
    /* background-color: #FFF000; */
}

.bg-darken {
    /* background-color: #F48C06; */
    background-color: #042698;
}

.bg-red {
    /* background-color: #F48C06; */
    background-color: #DF3231;
}

.bg-green {
    background-color: #049830;
}

.text-yellow-500 {
    /* color: #F48C06;     */
    color: #FAA000;    
}

.text-darken {
    /* background-color: #F48C06; */
    color: #042698;
}

.text-green {
    color: #049830;
}

.text-red {
    /* background-color: #F48C06; */
    color: #DF3231;
}

.floating { 
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    /* color: #2F327D; */
    color: #042698;
}
.text-white {
    color: white;
}

.bg-footer {
    background-image: url('../img/dp2.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.beritalainnya {
    padding: 0 50px;
}

@media (max-width: 768px) {
    .text-hp {
        font-size: 22px;
    }

    .bg-cream {
        /* background-color: #FFA000;     */
        background-image: url('../img/dp1.jpg');
        background-size: cover;
        background-attachment: fixed;
        /* height: 100vh; */
    }

    .beritalainnya {
        padding: 0;
    }
}

.progress-pie {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* conic-gradient creates the pie chart effect */
  background: conic-gradient(var(--c) calc(var(--p) * 1%), #ddd 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2em;
  font-weight: bold;
}
