html, body {
    background-color: rgb(2, 88, 104);
    background-image: url(images/IMG_5518.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color:#1a134f;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6em;
    margin: 0;
    height: 100%;
}

.container {
    width:80%;
    margin:auto;
    overflow:auto;
    display: grid; 
    grid-template-columns: auto auto auto; 
    gap: 33px;
    align-items: start;
    padding: 33px;
}

.block {
    border: 1px solid #cccccc;
    box-sizing: border-box;
    padding: 69px;
    background-color: rgb(2, 88, 104)
}

.block p {
    color: lightpink; 
  }

.navbar {
    background-color: #2B2D42;
}

.navbar-brand {
    font-family: 'Handjet', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #FFDAB9;
}

.nav-link {
    font-family: 'Handjet', sans-serif;
    font-weight: 300; 
    font-size: 27px;
    color: #fff;    
  }  

.centered-text{
    text-align: center;
    background-color: #FF7F50;
    color:#fff;
    font-family: 'Ribeye Marrow', curvise;
}

.video-container {
    text-align: right;
    margin-right: 113px;
}

.profile-pic-container {
    width: 369px;
    height: 369px;
    border-radius: 50%; 
    background-image: url('images/IMG_0054.JPG');
    background-size: cover; 
    background-position: top; 
    background-repeat: no-repeat; 
    object-fit: cover;
    overflow: hidden; 
    position: relative;
    top: 100px; 
    left: 36px; 
    z-index: 0;
}

.my-link {
    color: darkblue;
    text-decoration: underline; 
    font-size: 21px;
    font-family: Arial, sans-serif;
}

.my-link:hover {
    color: #1a55bc; 
    text-decoration: underline dotted; 
}

.button-style {
  background-color: #FF7F50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: 'Handjet', sans-serif;
  font-size: 23px;
  cursor: pointer;
  margin-bottom: 1rem;
}

.button-style:hover {
  background-color: #E67343;
}


#image {
    width: 100%;
    height: auto;
}

#main-header {
    background-color:coral;
    color:#fff;
}

#main-header h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

#main { 
    padding:20px 30px;
    box-sizing: border-box;
    background-color: #f6d0d0;
    font-family: 'Lora', serif;
    font-size: 18px;
    max-width: 900px; 
    margin: 0 auto; 
    position: relative;
    margin-top: 250px;
    padding-top: 50px;
}

#main h1 {
    text-align: center; 
}

#main p {
    text-align: justify;
}

#sidebar {
    background: #333;
    color: #fff;
    padding:10px;
    box-sizing: border-box;
}

#main-footer {
    background: #2B2D42;
    color: #fff;
    text-align: center;
    padding:20px;
    width:100%;
    margin-top: auto;
}

@media(max-width:600px){
    #main{
        width:100%;
        float:none;
    }

    #sidebar{
        width:100%;
        float:none;
    }
}

@media (max-width: 768px) {
    #main {
        padding: 15px; 
        font-size: 16px;
    }

    .profile-pic-container {
        width: 200px; 
        height: 200px;
        margin: 0 auto 20px; 
    }
}

.navbar-toggler {
    background-color: #f8f9fa; 
    border-color: #f8f9fa;     
    color: #000;               
  }
  
 
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
  
.navbar-toggler:hover {
    background-color: #e2e6ea; 
    border-color: #e2e6ea;
}
  

.project-card {
    font-family: 'Lora', serif;
    font-size: 16px; 
    color:#3A3D53; 
}

.project-card .card-title {
    font-weight: 700; 
}

.project-card .card-text {
    font-weight: 400; 
}

.contact-section {
    background-image: url('images/IMG_5518.jpg');
    background-size: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    background: #FAFAFA; 
    padding: 30px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form h3 {
    font-family: 'Lora', serif; 
    font-size: 28px;
    color: #3A3D53;
    text-align: center;
    margin-bottom: 20px;
}

form input, form textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    font-family: 'Lora', serif; 
    font-size: 16px;
    background-color: #FFF5F5; 
    color: #3A3D53; 
}

form button {
    background-color: #FF7F50; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

form button:hover {
    background-color: #E67343; 
}

.linkedin-button {
    display: inline-block;
    background-color: #FF7F50; 
    color: white;
    text-align: center;
    padding: 13px 27px;
    margin-bottom: 20px; 
    width: auto;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 24px;
}

.linkedin-button:hover {
    background-color: #E67343; 
}

.blog-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .blog-page .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .blog-page #main {
    flex-grow: 1;
    padding: 2rem 1rem;
    background-color: #FAFAFA;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    max-width: 800px;
    width: 100%;
    margin: 2rem 0;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  #back-button {
    background-color: #FF7F50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Handjet', sans-serif;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 1rem;
  }
  
  #back-button:hover {
    background-color: #E67343;
  }
  
  #post-content {
    font-family: 'Lora', serif;
    padding: 1.25rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 1.05rem;
    line-height: 1.75;
    letter-spacing: 0.01em;
  }
  
  #post-content h1, 
  #post-content h2, 
  #post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: break-word;
  }
  
  #post-content p {
    margin-bottom: 1.2rem;
  }
  
  #post-content ul, 
  #post-content ol {
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  #post-content img,
  #post-content iframe,
  #post-content video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
  }
  
  #post-content pre, 
  #post-content code {
    overflow-x: auto;
    display: block;
    background: #f5f5f5;
    padding: 0.75rem;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  
  @media (max-width: 768px) {
    #post-content h1 {
      font-size: 1.5rem;
      text-align: left;
    }
  
    #main-header h1 {
      font-size: 1.75rem;
      text-align: center;
    }
  
    #blog-list li {
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }
  
    #back-button {
      font-size: 1rem;
    }
  
    .blog-page #main {
      margin: 1rem auto;
      padding: 1rem;
    }
  }
  
  #tx-table {
    width: 90%;
    max-width: 1000px;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: #004d4d;
    color: white;
    text-align: center;
  }

  .table-container {
    display: flex;
    background-color: #f6d0d0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  #tx-table th {
    background-color: #ff7f50; /* coral header */
    color: white;
    padding: 10px;
    border: 1px solid #333;
    font-weight: bold;
  }
  
  #tx-table td {
    padding: 10px;
    border: 1px solid #333;
  }
  
  #tx-table tbody tr:nth-child(even) {
    background-color: #006666;
  }
  
  #tx-table tbody tr:hover {
    background-color: #008080;
  }

  @media (max-width: 768px) {
    #tx-table {
      font-size: 12px;
      width: 100%;
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  
    #tx-table th,
    #tx-table td {
      padding: 8px;
    }
  
    .table-container {
      padding: 0.5rem;
    }
  }
  
  
  
  