#jam {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 40px !important;
    color: #198754;
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#informasi-aja h2 {
    background-color :crimson;
    margin-top: 25px;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    color: wheat;
}

#informasi-lagi {
    background-color: seagreen;
    height: 600px;
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-top: 10px;
    color: whitesmoke;
}

#informasi-lg img {
    margin-top: 40px;
    margin-bottom: 20px;
    height: 400px;
    width: 300px;
}

section {
    padding-top: 128px;
    position: relative;
}

section::before {
    z-index: -1;
    content: '';
    font-size: 72px;
    color: gray;
    opacity: 0.25;
    position: absolute;
    font-weight: 700;
    top: 20px;
    left: -20px;
}

.btn.button {
    border: 3px solid black;
    border-radius: 24px;
}

.btn.button:hover, .btn.button.active {
    border: 3px solid black;
    background-color: black;
    color: white;
}

.navbar {
    background-color: white;
}

.home h1 {
    font-size: 72px;
}

.home h3 {
    font-size: 48px;
}

.home img{
    width: 100%;
}

.home .arrow img{
    width: 60px;
}

#arrow {
    animation: 2s upDown infinite;
}

@keyframes upDown {

 0% {
    transform: translateY(0);
 }

 50% {
    transform: translateY(10px);
 }

 100% {
    transform: translateY(0);
 }

}

.about::before {
    content: 'About';
}

.about-exp-item {
    margin-top: 32px;
}

.about-exp-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-exp-item-detail {
    display: none;
}

.work::before {
    content: 'Work'
}

.work-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "work-1 work-2" "work-3 work-3";
    gap: 16px;
}
.work-img img {
    width: 100%;
}

.work-img-item {
    position: relative;
    margin-top: 66px;
}

.work-img-item:hover::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
}

#work-1 {
    grid-area: work-1;
}

#work-1:hover::after{
    content: 'Praktek Dokter';
}

#work-2 {
    grid-area: work-2;
}

#work-2:hover::after{
    content: 'Apotek';
}

#work-3 {
    grid-area: work-3;
}

#work-3:hover::after{
    content: 'Apotek';
}

.contact {
    padding-bottom: 128px;
}

.contact::before {
    content: 'Konsultasi';
}

.contact-form {
    border: 1px solid black;
    padding: 25px 32px;
}

.form-label {
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .home img {
        width: 50%;
    }

   #informasi-lagi {
         width: 50% ;
    }
   
    
}

@media only screen and (max-width: 576px) { 
    section::before {
        left: 3px;
        font-size: 64px;
    }

    #informasi-lagi {
         width: 100%;
    }    
}
