@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;1,300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

/* Base Styles
********************************************************************* */
html,
body {
	/* height: 100%; */
    margin: 0px;
    overflow-x: hidden;
    padding: 0px;
 	/* width: 100%; */
    background: rgba(11,22,31,1);
    scroll-behavior: smooth!important;
}

:root {
  --primary-color: #d67214;
  --text-shadow: 4px 4px 4px #000000;
  --font-base: 'Poiret One', monospace, sans-serif;
  --animation-duration-long: 6s;
  --animation-duration-short: 3s;
}



/* End Base Styles
********************************************************************* */
  

.container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* For devices larger than 400px */
  @media (min-width: 400px) {
    .container {
    width: 85%;
    padding: 0;
    }
  }

  li {
    margin-bottom: 10px;
    margin-top: 10px;
    align-items: center;
    display: flex;
    }
    
    li img {
    width: 25px; /* Set according to your icon size */
    margin-right: 0px;
    }

  li {
    margin-bottom: 10px;
    margin-top: 10px;
    align-items: center;
    display: flex;
  }
    
  li img {
    width: 25px; /* Set according to your icon size */
    margin-right: 0px;
  }
    
  .center {
    margin: auto;
    /* width: 50%; */
    padding: 10px;
  }

  /* Typography
********************************************************************* */
h2, h3, h4, h5, h6 {
    color: white;
    text-align: center;
    /* text-shadow: 2px 2px 4px #000000; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Poiret One', monospace, sans-serif; /* Consolidated font-family */
  }
  
  /* Specific Styles */
  h2 {
    font-size: 4rem;
  }
  
  h3 {
    font-size: 2.7rem;
  }
  
  h4, h5 {
    /* No unique styles; already covered by shared styles */
  }
  
  h6 {
    font-size: 1.7rem;
  }
  
  /* Custom Class for h7-like styling (since h7 doesn't exist) */
  .custom-h7 {
    font-family: 'Lobster', cursive; /* Assuming 'Lobster' is intended to be cursive */
    font-size: 3rem;
    color: white;
    font-style: normal; /* Changed from 'thin', which is not a valid font-style value */
    font-weight: 100;
  }
  
  .linkInText{
    font-size: 1.6rem;
    font-family: Raleway;
    color:rgb(252, 144, 20);
  }
  
  .linkInText:hover{
    color:rgb(253, 185, 108);
    text-decoration: none;
  }
  
  .link-text:hover {
    text-decoration: none;
  }
  
  .text-center {
    text-align: center;
  }
  
  .link-icon:hover {
    color: white;
  }
  
  .link-icon {
    color: #c1b193;
  }
  
  .link-text {
    font-family: 'Ubuntu', monospace, sans-serif; font-size: 20px;
  }
  
  .see-more {
    font-family: 'Poiret One', monospace, sans-serif; font-size: 20px;
  }
  
  /* End Typography
  ********************************************************************* */



  /* NavBar
********************************************************************* */
.navbar-brand {
    transform: rotate3d(1, 2.0, 3.0, -2deg) skewX(-2deg);
    animation-duration: var(--animation-duration-short);
    color: white !important;
    font-family: Lobster, Georgia;
    font-size: 4rem;
    transition: 1s;
    zoom: 1.005;
    text-shadow: var(--text-shadow);
  }
  
  .nav.navbar-nav li a {
    color: white;
    font-family: var(--font-base);
    font-size: 28px;
    transition: 0.5s linear;
  }
  
  .navbar-toggle {
    animation-name: toggle-nav;
    animation-duration: var(--animation-duration-long);
    /* color: rgb(182, 18, 18); */
  }
  
  .navbar-inverse .navbar-toggle:focus, 
  .navbar-inverse .navbar-toggle:hover,
  .nav.navbar-nav li a:hover:after {
    background-color: var(--primary-color);
  }
  
  .navbar {
    border: none !important;
    animation-duration: var(--animation-duration-long);
    color: rgb(134, 196, 19);
    visibility: hidden;
  }
  
  .nav.navbar-nav li a:after {
    background: transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    background-color: var(--primary-color);
  }
  
  .nav.navbar-nav li a:hover:after {
    width: 100%; 
    left: 0;
  }
  
  .sticky {
      background: rgba(11,22,31,0.9);
      opacity: 1;
      top: 0px;
      visibility: visible;
  }
  
  .blog-nav{
    background: rgba(11,22,31,0.9);
      opacity: 1;
      top: 0px;
      visibility: visible;
  }
  
  /* End NavBar
  ********************************************************************* */

  /* Layout
********************************************************************* */
p {
    color: white;
    font-size: 1.75rem;
    padding-top: 3%;
    font-family: 'Ubuntu', monospace, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
   
  }

  tr {
    border:1px solid; 
    border-color:rgb(255, 255, 255);
  }
  
  th {
    border:1px solid; 
    border-color:rgb(255, 255, 255); 
    padding-left:3px;
    padding-right:3px;
  }
  
  td {
    border:1px solid; 
    border-color:rgb(255, 255, 255); 
    padding-left:3px;
    padding-right:3px;
  }
  
  .container{
    min-height: 100%;
  }

  .section {
    padding-top: 2.8rem;
    padding-bottom: 2rem;
    
  }

  .section-divider {
    width:50dvh;
    border-top: 1px solid #d67214;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }

  header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding-bottom: 30vh;
    background: rgba(11,22,31,1);
  }

  .title {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	padding: 2rem;
	max-width: 960px;
	text-align: center;
	position:absolute;

}

.title .smallsep {
	background: #fff;
	height: 2px;
	width: 70px;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

.title h1 {
	font-size: 80px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 0.85;
	margin-bottom: 28px;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	
}

.title h2 {
	color: rgba(255, 255, 255, 0.85);
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 5px;
	/* margin-top: 50px; */
}

.background {
	position: absolute;
  height: 90vh;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	opacity: 0.45;
  } 
/* End Front Page
********************************************************************* */

  .scroll-down {
	position: absolute;
	left: 50%;
	bottom: 5vh;
	display: block;
	text-align: center;
	font-size: 20px;
	z-index: 100;
	text-decoration: none;
	text-shadow: 0;
	width: 20px;
	height: 20px;
	border-bottom: 5px solid #fff;
	border-right: 5px solid #fff;
	z-index: 9;
	-webkit-transform: translate(-50%, 0%) rotate(45deg);
	-moz-transform: translate(-50%, 0%) rotate(45deg);
	transform: translate(-50%, 0%) rotate(45deg);
	-webkit-animation: fade_move_down 2s ease-in-out infinite;
	-moz-animation: fade_move_down 2s ease-in-out infinite;
	animation: fade_move_down 2s ease-in-out infinite;
}


    
.img-thumbnail .img-responsive {
    display: block;
    max-height: 100%;
    width: auto;
  }

  .image {
    backface-visibility: hidden;
    display: block;
    height: auto;
    opacity: 1;
    transition: 0.5s ease;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
  }

  .img-caption-text {
    color: white;
    font-family: Tahoma;
    font-size: 11px;
  }