/* title style */
.title {
    background-image: url("images/title_background.jpg"); 
    background-size: cover; 
    background-position: center;
    color: #FFFFFF; 
    font-size: 40px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
  }
  
/* background effect*/
body {
    background-image: 
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7)),
    url("images/background.jpg"); 
    min-height: 101vh; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-position: center;
    background-size: cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: auto
  }


/* Keyframe fadein effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }