/* || General setup */

:root {
  --transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  --navbar-height: 40px;
  --bs-body-bg: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color : #000;
  font-family: Verdana, Geneva, sans-serif;
  color: #fff700;
}

html, body {
  background-color : #000;
  font-size: 12px;
}

body {
  /*padding-top: var(--navbar-height);*/
  margin-left: 2%;
  margin-right: 5%;
  overflow: scroll;
  line-height: 1.6;
}

.initial-hide {
   display: none;
}

/* || typography */

h1, h2, h3 {
    text-align: center;
    color: #fff700;
}

h1, h2 {
  text-transform: uppercase;
}
h1 {
    font-size: 1.5rem;
    text-shadow: 2px 2px 10px #000;
    padding-top: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

p {
    justify-content: left;
}
iframe {
    max-width: 100%;
    max-height: 100vh;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: auto;
}

/* Flexbox */

.row-container {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu-container {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    z-index: 1001;
}

.flex-item-center {
    max-width: 100%;
    height: auto;
    padding: 1rem;
    text-align: center;
    justify-content:center;
}

.flex-item {
    max-width: 100%;
    height: auto;
    padding: 1rem;
    text-align: left;
    justify-content:center;
}

/* menu */

header {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    position: static;
    height: 60px;
    object-fit: contain;
    object-position: center;
}


.logo {
    max-height: 100%;
    flex-flow: row;
    display: flex;
    float: left;
    font-size: 0.9rem;
    align-content: center;
    justify-content: center;
    font-weight: bold;
}

.logo-content {
    margin: auto;
}

.navbar {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    margin-right: 2%;
    width: 100vw;
    display: flex;
    background-color:  #000;
    padding: 0;
    margin-left: auto;
    list-style-type: none;
    padding: 2px;
}


.navbar-brand #logo img {
    width: auto;
    /* Maintain aspect ratio */
    flex: 1 1 auto;
    /* Allow images to grow and shrink */
    object-fit:contain;
    float:left;
}

.nav-item a {
    color: #fff700;
}

.nav-item {
    background-color: #000;
}

.dropdown {
    background-color: #000;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
}

.dropdown-menu {
    --bs-dropdown-padding-y: 0;
    background-color: rgb#000;
}

.dropdown-menu.show {
    display: flex;
    flex-flow: column;
}

.dropdown-item {
    color: #fff700;
    width: fit-content;
}

.nav li {
    text-align: center;
}

.nav a,
.nav span {
    display: inline-block;
    font-size: 1rem;
    height: auto;
    text-transform: uppercase;
    text-decoration: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
}

w3-button a {
    color: #fff700;
}

picture {
    margin: auto;
    object-position: center;
}

img {
    max-height: 90%;
    max-width: 90%;
    display: grid;
    object-fit: cover;
    margin: auto;
}

.imgcap {
    margin-bottom: 6rem;
    text-align: center;
}

.scroll-button {
    position: fixed;
    margin: 0;
    bottom: 5px;
    right: 5px;
    z-index: 1000;
}

.footer {
    font-size: 8pt;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-left: 5px;
}
