@charset "UTF-8";
/* CSS Document */

/*font group
sans-serif font for headline

// <weight>: Use a value from 300 to 900
// <uniquifier>: Use a unique and descriptive class name

.red-hat-display-<uniquifier> {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

serif for paragraph

.roboto-serif-<uniquifier> {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}
*/

/*Color Group*/
/*Charcoal: #121212
  Slate: #424242
  White: #ffffff
  Plum: #67328D
  Lavender: #DAA8FF
*/


body {font-family: "Roboto Serif", serif;
}
h1, h2, h3, h4, h5, h6 {font-family: "Red Hat Display", sans-serif;
}

/*center an image*/
img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.navbar-custom {font-family: "Red Hat Display", sans-serif;
}

/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: #121212; 
}

/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #67328D;
}


/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover, 
.navbar-custom .dropdown-item:focus {
    background-color: #DAA8FF;
    color: #fff;
	padding-left: 10px
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: rgba(103,50,141,55);
    color: #67328D;
}
/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}


/*nav-bar brand logo*/
.navbar-brand {
    background-image: url(../images/genifer-logo.png);
    background-repeat: no-repeat;
    background-size: 50px auto;
    background-position: 0% center;
    padding-left: 40px;
}
