/* GLOBAL STYLES */
body {
  /*background-image: url(/static/main/img/darkness.png);*/
  /*font-family: 'Gruppo', cursive;*/
  /*font-weight: lighter;*/
  background-size: contain;
  background: linear-gradient(#2F80ED 0vh, #2F80ED00 100vh, #FFFFFF 200vh) no-repeat top;
  color: black;
  font-family: helvetica, arial, sans;
  font-size: x-large;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  color: black;
  font-family: 'Gruppo', cursive;
  font-weight: bolder;
}

figure {
  align-items: center;
  display:flex;
  flex-flow: row;
  margin: auto;
}

figcaption {
  color: black;
  font-family: 'Gruppo', cursive;
  font-size: x-large;
  font-weight: bold;
}

/* BOOTSTRAP STYLES */

.card {
  background: transparent;
  border: 0;
}

.card-title {
  font-weight: bolder;
  min-width: 200px;
}

.list-inline {
  margin-left: .4rem;
  font-size: 1.1rem;
  /*list-style: square;*/
}

/* NAVBAR */
.navbar-dark .navbar-brand {
  /*color: #90B0ff;*/
  color: cornflowerblue;
}
.navbar-brand {
  font-family: 'Gruppo', cursive;
  font-size: xx-large;
  font-weight: 700;
}
.navbar-dark .navbar-nav .nav-link {
  /*color: #90B0ff;*/
  font-weight: bold;
  color: cornflowerblue;
}
#mynavbarul {
  width: 100%;
  justify-content: space-between;
  font-family: 'Gruppo', cursive;
}

/* LOGO */
.logo {
  font-family: 'Gruppo', cursive;
}

.logo a {
  color: rgba(0,0,0,.9);
}

.logo a:hover,
.logo a:active {
  text-decoration: none;
}

.bg-black {
  background: black;
}

a.contact {
  color: white;
}

.footer {
  background: black;
  color: white;
  display: flex;
  font-family: 'Gruppo', cursive;
  font-size: smaller;
  /*height: 5rem;*/
  justify-content: space-evenly;
  margin: 3vh 0 0;
  /*position: absolute;*/
  /*transform: translate(0, 0%);*/
  /*width: 100%;*/
}

.footer a {
  color: white;
}

/* GSI STYLES */
#gsi-header {
  border-bottom: solid 1px white;
  color: white;
  margin-top: 2vh;
  padding-bottom: 1vh;
  text-align: center;
}

.gsi-title {
  color: white;
  width: 65%;
  margin: auto;
  padding-left: 3%;
  color: black;
}

.gsi-main-image {
  width: 220px;
  flex-shrink: 1; /*shrink images in firefox with very narrow columns*/
}

.gsi-title-image {
  width: 25%;
  flex-shrink: 1; /*shrink images in firefox with very narrow columns*/
  display: inline-block;
  margin-left: 5%;
}

.gsi-topic-url {
  color: black;
}

.gsi-topic-url > .list-inline {
  /*font-family: 'Gruppo';*/
  /*font-size: 1.4rem;*/
  /*font-weight: bolder;*/
  padding-left: 1.4rem;
  border-radius: 1.4rem;
  border: solid 1px black;
  background-color: lightskyblue;
  margin-bottom: 1rem;
}
.debug1 {
  border: solid 3px deeppink;
  box-sizing: border-box;
}

.debug0 {
}

.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* MEDIA QUERIES */
/*mobile first media query*/
@media only screen and (min-width: 768px){
  body {
    /*margin-right: -20px;*/
  }
  figure {
    flex-flow: column;
  }
  .gsi-title {
    font-size: 3.6rem;
    width: 75% ;
  }
  .gsi-title-image {
    margin-left: 0%;
  }
}


