/* Import font from Google - Go to fonts.google.com, select a font and look for the import command */

@import url('https://fonts.googleapis.com/css2?family=Julee&display=swap');

h2 {
  font-family: "Julee", cursive, sans-serif;
  font-size: xxx-large;
  font-weight: 800;
  font-style: normal;
}

h3 {
  font-family: "Julee", cursive, sans-serif;
  font-size: xx-large;
  font-weight: 600;
  font-style: normal;
}

.julee-regular {
  font-family: "Julee", cursive;
  font-size: x-large;
  font-weight: 400;
  font-style: normal;
}

/* PK: Gradient generator: https://cssgradient.io/ */

.header{
background: rgb(255,255,255,0.5);
}

.container-header .navbar-toggler {
    color: #000;
    cursor: pointer;
    border: 1px solid #000;
}

.header.container-header.full-width {
	display: grid;
	grid-template-columns: minmax(0,1fr) repeat(4,minmax(0,19.875rem)) minmax(0,1fr);
	grid-gap: 0 1em;
	align-items: center;
}
.container-header .grid-child:first-child {
	grid-column: 2/2;
}
.container-header .container-nav {
	grid-column: 3/5;
}

.metismenu-item {
  color: rgb(0,0,0);
}

.footer{
  background: rgb(0,0,0);
}