html {

    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #d5ecfc, #ffffff);
    font-family: "Open Sans", Andalus, serif;
    font-size: 18px;
    font-weight: 400;
}

a,
button {
    transition: all 0.3s ease;
}

h1 {
    font-size: 64px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    text-align: center;
    text-shadow: 3px 2px 1px grey;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-shadow: 3px 2px 1px grey;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    resize: both;
    margin: auto;
    height: auto;
}

/* Card Style */
.card-header {
    background-color: rgb(198, 248, 250);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.card {
    margin-top: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    justify-content: center;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.6)
}

.card-body {
    padding: 1.5rem 1rem;
    transition: transform .0.1s;
}

.card-img-top {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
}

/* Footer Section */

.copyright-text {
    margin-top: 80px;
    margin-bottom: 30px;
  }


/* Swipe Up Button */
.swipeup {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: linear-gradient(to right, rgb(0, 51, 255), cyan) !important;
    border: solid 1px silver;
    z-index: 999;
  }

/* Media Responsive */

@media (max-width: 768px) {
    h1 {
      font-size: 48px;
    }
    h2 {
        font-size: 28px;
    }
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 36px;
    }
    h2 {
        font-size: 28px;
        margin: 2rem 0rem 2rem 0rem; /* atau 2rem */
    }
    .text-over {
        align-items: start;
        font-size: 8px;
    }

  }

