/*  CSS for Site */

* {
    box-sizing: border-box;
  }

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 24px;

}

#backimg {
  background-image: url(/assets/images/repeated-square.png);
  opacity: 0.2;
}

body > .container {
  padding: 60px 15px 0;
}

nav {
  font-size: 24px;
}

h1 {
  font-family: 'Fredericka the Great', cursive;
}

#contact  {
  font-family: 'Fredericka the Great', cursive;
  font-size: 26px;
}


#roles {
  font-size: 20px;
}

.lead {
  font-size: 24px;
  text-shadow: 1px 1px darkslategrey;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
    text-shadow: 1px 1px darkslategrey;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

#devModal, #pmModal, #techModal {
  font-size: 20px;
}

.cardfoot a:link {
  /* unvisited link white */
	color: white;
}
/* visited link white */
.cardfoot a:visited {
	color: white;
}
/* mouse over link blue */
.cardfoot a:hover {
	color: red;
}
/* selected link blue */
.cardfoot a:active {
	color: #0CF;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}