.navbar {
    background-color: #333;
    background-image: linear-gradient(
        to right,
        var(--bs-dark),
        #040408,
        #08b4f2
      );
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  .navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  .main {
    margin-top: 30px;
    padding: 16px;
  }
  .content {
    padding: 16px;
  }
  .footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  .image-container img {
    width: 100%;
    height: auto;
}
  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.3); /* Optional: add a background to the text */
    padding: 30px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 25px;
    font-weight: bold;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  @media (max-width: 640px) { .overlay-text { font-size: 15px; } }
.nav-brand {
    font-size: 25px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:goldenrod
}
.about {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:lightblue
}
.offering {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:burlywood
}
.contact {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:steelblue;
}
.oo {
    background-color:#555;
    border-radius: 10px;
}
.sd {
    background-color:#333;
    border-radius: 10px;
}
.ais {
    background-color:#444;
    border-radius: 10px;
}
.card .btn {
    background-color: silver;
    color: black;
    border-radius: 10px;
}
.card .btn:hover {
    background-color: black;
    color: goldenrod;
}
.email {
    font-size: 15px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}
#footer {
    font-size: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
}
#home{
    scroll-margin-top: 100px;
}
#about{
    scroll-margin-top: 100px;
}
#offering{
    scroll-margin-top: 100px;
}
#contact{
    scroll-margin-top: 100px;
}