/* Main css */

html  {
  font-family: 'Glory', sans-serif;
  background-image: url(mcshadersblur.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  height: 100%;
  overflow: hidden;
}

div.name {  
  font-size: 70px; 
  font-weight: 600;
  color: rgb(255,255,255)
}

div.intro {
  text-align: center;
  padding: 200px
}

div.intro-small {
  color:rgb(255, 255, 255);
  font-size: 25px;
}

div.text {
  border: 3px solid rgb(0, 0, 0);
  margin: 25px;
  padding: 50px;
  background-color:rgb(255, 0, 0);
}

a.tropicmc {
  text-decoration: none;
  color: green
}

a.tropicmc:hover {
  font-weight: 600;
}

/* Navigation bar */

.nav {
  border-width:1px 0;
  list-style:none;
  margin:0;
  padding:0;
  text-align:center;
}
.nav li {
  display:inline;
  padding: 10px;
}
.nav a {
  display:inline-block;
  padding:10px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 25px;
}

.nav a:hover {
  background-color: rgba(100, 100, 100, 0.3);
  font-weight: 600;
}

a.home {
  color: red
}

a.about {
  color: orange
}

a.projects {
  color: yellow
}

a.photos {
  color: green
}

a.hub {
  color: blue
}

/* Discord tooltip */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: rgb(40, 40, 40);
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 115%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 25px;
  color: rgb(255, 255, 255)
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(40, 40, 40) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
