html

{
    scroll-behavior:smooth
}



body {
    font-family:"Open Sans";
    margin: auto;
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
    
}
.container {
    max-width: auto;
    margin: auto;
    background: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 24px;
    color: #6e0303;
    font-weight: bold;
}
.info {
    text-align: left;
    margin-top: 10px;
}
.info h2 {
    font-size: 20px;
    color: #4d004f;
    font-weight: bold;
}
.info h3 {
    font-size: 20px;
    color: #4d004f;
    font-weight: bold;
}
.info h4 {
    font-size: 20px;
    color: #4d004f;
    font-weight: bold;
}
.info h5 {
    font-size: 15px;
    color: #4d004f;
    font-weight: bold;
}
.info p {
    font-size: 15px;
    color: #00314b;
    font-weight: bold;
}
.info ul {
    color: #ba3006;
    list-style-type: disc;
    padding-left: 10px;
    font-weight: bold;
}
.info ul {
    
    font-size: 15px;
    margin: 5px 0;
    padding-left: 35px;
}
.info strong {
    
    color: #007571; 
    font-weight: bold;
}

table {
    font-weight: bold;
    color: #0f2abe; 
    text-align: justify;
}
table th {
    font-weight: bold;
    color: #b90300; 
    text-align: center;
}


p 
{
    color: #4d004f; 
    text-align: justify;
     font-size: 16px; 
     font-weight: bold; 
     text-shadow: 2px 2px 4px #f4f8d0;
}
button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}
button:hover {
    background-color: #ff00ee;
}
copyright {
    color: #8c0f0f; /* Tomato color */
    text-align: center;
    font-weight: bold; /* Makes text bold */
    font-size: 16px;
    text-shadow: 2px 2px 4px #dce857;  /*Adds shadow with black color */
 }

 .navbar-nav .nav-link {
    
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    
}
.navbar-nav .nav-link:hover {
    background-color: #f48551da;
    color: #0434f2;
    font-weight: bold;
}

.social-icons .social-icon {
    margin: 0 10px;
    font-size: 24px;
    color: #ff00ee;
    transition: color 0.3s;
}
.social-icons .social-icon:hover {
    color: #007bff;
}

/* page image click to view */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;

  }
  .clickable-image {
    width: 300px;
    transition: transform 0.3s;
  }
  .clickable-image:hover {
    transform: scale(1.2);
  }