* {
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* change this for background image */
  background-image: url("../img/bg.png");
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  margin: auto;
  overflow-x: hidden;
  background-blend-mode: saturation;
  
  @media only screen and (max-width: 768px) {
  	background-image: url("../img/bg_mobile.png");
  }
}


/* Header Css */
.head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.head h1{
  color: white;
  font-size: 2rem;
  margin-top: 16px;
  margin-bottom: 0px;
}

.head p {
  color: white;
  font-size: 1rem;
  margin-top: 16px;
  margin-bottom: 32px;
}

.tooltipped {
  position: relative
}

.tooltipped:after {
  position: absolute;
  z-index: 1000000;
  display: none;
  padding: 5px 8px;
  font: normal normal 11px/1.5 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: break-word;
  white-space: pre;
  pointer-events: none;
  content: attr(aria-label);
  background: rgba(0,0,0,.8);
  border-radius: 3px;
  -webkit-font-smoothing: subpixel-antialiased
}

.tooltipped:before {
  position: absolute;
  z-index: 1000001;
  display: none;
  width: 0;
  height: 0;
  color: rgba(0,0,0,.8);
  pointer-events: none;
  content: "";
  border: 5px solid transparent
}

.tooltipped:hover:before,.tooltipped:hover:after,.tooltipped:active:before,.tooltipped:active:after,.tooltipped:focus:before,.tooltipped:focus:after {
  display: inline-block;
  text-decoration: none
}

.tooltipped-multiline:hover:after,.tooltipped-multiline:active:after,.tooltipped-multiline:focus:after {
  display: table-cell
}

.tooltipped-s:after,.tooltipped-se:after,.tooltipped-sw:after {
  top: 100%;
  right: 33%;
  margin-top: 5px
}

.tooltipped-s:before,.tooltipped-se:before,.tooltipped-sw:before {
  top: auto;
  right: 50%;
  bottom: -5px;
  margin-right: -5px;
  border-bottom-color: rgba(0,0,0,.8)
}

/* pfp img css */
.head img {
  max-width: 12vw;
  height: auto;
}

.header {
  background-color: none;
  color: #ffffff;
  padding: 15px;
}
/* Span for fa icons */
span {
  font-size: 30px;
  width: auto;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

hr {
  display: none;
}

/* font awesome buttons */
.link {
  padding: 16px 32px;
  width: auto;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  font-size: 16px;
  display:inline-block;
}

.link:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.fa {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: bottom;
}

.discord {
  color: #7289da;
  border-bottom: solid #55ACEE;
  border-width: 3px;
  cursor: pointer;
}

.discord:hover {
  background: #55ACEE33;
}

.github {
  color: white;
  border-bottom: solid white;
  border-width: 3px;
}

.github:hover {
  background: #FFFFFF33;
}

.mr-2 {
  margin-right: 2vw;
}