/* Copyright (C) Nimbus Anvil Capital Inc. All Rights Reserved.
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * Proprietary and confidential.
 * Originally wirtten by Howard R. Silvey <nimbusac@techsupport.com>, June 2023
 *
 */

/***CSS Cascading Style Sheets***/

/*--Psuedo-Class--*/
:root {

}

/*--Classes--*/

li {
  display: inline;
}

li.menu-item:not(:last-child) { 
   margin-bottom: 3px;  
}

.container {
  display: flex;
}

.tab {
  flex: 1;
  text-align: center;
  background-color: #fff;
  padding: 1vw;
  margin: 0 1%;
}


.nav-bar {
  z-index: 1001; /* Set a higher z-index value */
  background-color: white;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}

.logo {
  font-family: "FS Sinclair", sans-serif;
  font-size: 2vw;
  margin-left: 2%;
}

.navbar-nav {
  z-index: 1001; /* Set a higher z-index value */
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-item {
    z-index: 1001; /* Set a higher z-index value */
    list-style: none;
    font-weight: bold;
	margin-right: 10px;
    /*margin-bottom: 10px;*/
    width: 100%;
    text-align: center;
    background-color: white;
    height:36px;
  	position: relative; 
    text-decoration: none;
}

.nav-link {
  z-index: 1001; /* Set a higher z-index value */
  display: inline-block;
  text-decoration: none;
}

.dropdown-menu {
  z-index: 1001; /* Set a higher z-index value */
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px;
  left: 0;
  top: 100%; /* Position the dropdown below the parent item */
}

.nav-item:hover .dropdown-menu {
  z-index: 1001; /* Set a higher z-index value */
  display: block;
}

.gif-container {
    position: relative; /* Ensure the container is positioned */
    z-index: -999; /* Lower z-index value for the GIF container */
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #4c8bf5;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #3466b8;
}

body {
      margin: 0;
      padding: 20px;
      /*font-family: Arial, sans-serif;*/
}

h1 {
      font-size: 24px;
      margin-bottom: 20px;
}

ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
}

li {
      margin-bottom: 10px;
}

a {
      text-decoration: none;
      color: #333;
}

h3 {
  font-family: Tahoma;
  color: #FF00FF;
}

/**
p {
  width:80vw;
  box-shadow: 1vw 1vw 2vw #FF00FF;
  border-radius: 12vw;
  background-color: #FF00FF;
}
**/

/*Footer*/
footer {
  text-align: center;
  padding: 3vw;
  background-color: DarkSalmon;
  color: white;
}

/*--IDs--*/
#footer {
  text-align: center;
  padding: 3vw;
  background-color: DarkSalmon;
  color: white;
}