

html {
    scroll-behavior: smooth;
    background: lightpink;

}

* {
    font-family: 'Story Script', sans-serif;
}

p {
    font-size: 1.3rem;
}

.huruf-sambung {
    font-family: 'Story Script', sans-serif;
}

.huruf-sambung1 {
    font-family: 'Shadows Into Light', cursive;
}

.huruf-sambung2 {
    font-family: 'Handlee', cursive;
    font-weight: 600;
}
.nav {
    bottom: 0;
    left: 0;
    right: 0;
    list-style-type: none;
    display: flex;
    background-color: yellow;
    height: 80px;
    z-index: 1;
    position: fixed;
}

.nav li {
    flex: 1;
}

.nav li a {
    text-decoration: none;
    color: black;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1;
    position: relative;
 }

.nav li a:hover {
    color: white;
}

.nav li a.nav-item-music {
    transform: translateY(-20%);
    font-size: 40px;
    top: -30px;
    transition: transform 0.5s cubic-bezier (0.175, 0.885, 0.32, 1.275);
    }
.nav .nav-music {
    width: 90px;
    height: 90px;
    top: -35px;
    border-radius: 50%;
    background-color: turquoise;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    } 

.nav li a.rotate {
    animation: rotateAnimation 5s linear infinite;
    }

    @keyframes rotateAnimation {
    from { transform: rotate(0deg);

    }
    to {

    transform: rotate(360deg);

    } }

.text-pink {
color: black;
font-weight: 600;

}

.pembuka-section {
padding-top: 75px;
}

.section-title {
text-align: center;
padding-bottom: 30px;

}

.section-title h3 {
margin: 15px 0 0 0;
font-size: 32px;

}

.section-title p {
margin: 15px auto 0 auto;
}

.section-bg {
background: url(petals.gif);
opacity: 0.8;
}

#content-section {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: lightpink;
}

::-webkit-scrollbar-thumb {
    background: lightpink;
}

::-webkit-scrollbar-thumb:hover {
    background: pink hover;
}

.card-acara {
    width: calc(50%-10px);
}

@media (max-width: 992px) {
.card-acara {
    width: calc(50%-10px);
}
}


.btn-pink {
    font-size: 14px;
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border: 4px red;
    border-radius: 4px;
    transition: 0.5s;
    color: black;
    background-color: pink;
}

.btn-pink:hover {
    background: khaki hover;
    color: white;
}

.border-pink {
    border: black;
    border-radius: 15px;
}

.gallery {
  --g: 6px; /* the gap */
  text-align: center;
  display: grid;
  width: 80%; /* the size */
  aspect-ratio: 1;
  grid: auto-flow 1fr/repeat(3,1fr);
  gap: var(--g);
  margin: 0% 10% 10%;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.5s
}
.gallery img:hover {
  filter: grayscale(0);
}
.gallery img:nth-child(2) {
  grid-area: 1/2/span 2/span 2;
  clip-path: polygon(0 0,100% 0,100% 100%,calc(50% + var(--g)/4) 100%,0 calc(50% - var(--g)/4))
}
.gallery img:nth-child(3) {
  grid-area: 2/1/span 2/span 2;
  clip-path: polygon(0 0,calc(50% - var(--g)/4) 0,100% calc(50% + var(--g)/4),100% 100%,0 100%);
}

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

.timeline:before {
    content: "";
    bottom: 0;
    left: 50%;
    top: 0;
    width: 1px;
    background-color: black;
    position: absolute;
    margin-left: 0;
}

.timeline > li {
    margin-bottom: 20px;
    position: relative;
}

.timeline > li:before, .timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li .timeline-panel {
    width: 40%;
    float: left;
    border: 1px yellow;
    padding: 30px;
    border-radius: 4px;
    position: relative;
}

.timeline > li .timeline-panel:before {
    content: " ";
    position: absolute;
    top: 80px;
    right: -15px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px khaki;
    border-right: 0px;
    border-bottom: 14px solid transparent;
}

.timeline > li .timeline-panel:after {
    content: "";
    position: absolute;
    top: 81px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px red;
    border-right: 0px khaki;
    border-bottom: 14px solid transparent;
}

.timeline > li .timeline-badge {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    color: limegreen;
    width: 160px;
    height: 160px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -80px;
    background-color: yellow;
    z-index: 100;
    border-radius: 50%;
}

.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
} 

.timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 15px;
    left: -13px;
    right: auto;
} 

.timeline-title {
    margin-top: 0;
}

.timeline-date {
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-body > p, .timeline-body > ul {
    margin-bottom: 0;
    text-align: justify;
}

.timeline-body > p + p {
    margin-top: 5px;
    text-align: justify;
}

@media (max-width: 480px) {
    .timeline > li > .timeline-panel {
    width: 75% !important;
    }
    .timeline > li > .timeline-panel:before {
    top: 30px;
}

    .timeline > li > .timeline-panel:before {
    top: 31px;
    }

    .timeline:before {
        margin-left: -64px;
    }

    .timeline > li > .timeline-badge {
        width: 60px;
        height: 60px;
        margin-left: -20px !important;
    }
}

@media (max-width: 992px) {
    ul.timeline:before {
        left: 90px;
    }
    
    ul.timeline > li > .timeline-panel {
        width: calc(100%-20px);
    }

     ul.timeline > li > .timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
     }
    ul.timeline > li > .timeline-panel {
        float: right;
     }
    
    
    ul.timeline > li > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    ul.timeline > li > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
}





