/* CUSTOM CSS ADDING TO BOOTSTRAP */
/* --------------------------------- VARIABLES --------------------------------- */
:root {
    /* COLOR VARIABLES */

    --bs-primary: #000000;
    --bs-secondary: #ffffff;
    --bs-success: #28a745;
    --bs-danger: #dc3545;
    --bs-warning: #ffc107;
    --bs-info: #17a2b8;
    --bs-light: #f8f9fa;
    --bs-dark: #5d6369;
    --bs-white: #ffffff;
    --bs-black: #000000;
}    
  
/* --------------------------------- TYPOGRAPHY --------------------------------- */

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

/* --------------------------------- CUSTOM STYLES --------------------------------- */

html {
  background-color: var(--bs-black);
  margin: 0px; /* reset browser default margin */
  padding: 0px; /* reset browser default padding */
}

body {
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  margin: 0px 2vw;
  padding: 0px 5vw;
  outline: var(--bs-dark) dotted 2px;
}

section {
  margin: 30px 0px;
  padding: 20px 0px;
  border-radius: 4vw;
  box-shadow: 1px 1px 10px var(--bs-light);
}

.bg-dark {
  background-color: var(--bs-primary)!important;
}

.header-title {
  margin-top: 50px;
}

.logo-link {
  display: inline-block; /* Ensures the link only takes up as much width as necessary */
}

.logo-image {
  max-width: 100%; /* Makes the image responsive, scaling within its container */
  height: auto;
  border-radius: 50%;
}

/* Image collage */
.img-fluid {
  box-shadow: 0px 0px 15px;
  border-radius: 4vw;
}

/* Navigation links header and footer */
ul li a {
padding: 4px;
}

/* Navigation links header and footer (on hover) */
ul li a:hover {
text-decoration: none;
outline: solid var(--bs-secondary) 3px;
}