body {
background-color: #4D4D4D;
  background-image: url(img/static.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#head {
    text-align: center;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
}
#head h1 {
  font-size: 30px;
  font-family: 'Gajraj One', cursive;
  color: white;
  background-color: red;
  width: 50%;
  border: 30px;
  border-radius: 30px;
  position: fixed;
  z-index: 1000;
}
.banner {
  background-color: red;
  border-radius: 30px;
  margin: 30px;
  margin-top: 100px;
}
.banner img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.banner p {
  position: relative;
  text-align: center;
  top: -110px;
  font-size: 30px;
  font-family: 'Gajraj One', cursive;
  color: white;
  background-color: grey;
  border: 30px;
  border-radius: 30px;
}
.banner p b {
  position: relative;
  text-align: center;
  top: 7px;
  font-size: 60px;
  font-family: 'Press Start 2P', cursive;
  color: white;
  background-color: grey;
  border: 30px;
  border-radius: 30px;

}
.dot {
  position: relative;
  top: -200px;
  height: 250px;
  width: 250px;
  background-color: grey;
  border-radius: 50%;
  display: inline-flex;
  align-self: center;
}
.dot img {
  height: 248px;
  width: 248px;
  display: inline;
  align-self: center;
  border-radius: 50%;
  z-index: 1;
}
#projects h2 {
  position: relative;
  background-color: red;
  border-radius: 30px;
  margin: 30px;
  color: white;
  text-align: center;
  letter-spacing: 3px;
  font-family: 'Gajraj One', cursive;
  font-size: 30px;
}
.projects {
  position: relative;
  text-align: center;
  background-color: rgba(256, 256, 256, 0.5);
  border-radius: 30px;
  margin: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
.pCell {
  position: relative;
  text-align: center;
  background-color: red;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 10px;
  margin-right: 10px;
  width: 390px;
  height: 300px;
  border: 10px;
  border-radius: 10%;
  padding: 15px;
  transition: all 500ms ease;
}
.pCell:hover {
  transform: scale(1.1);
  transition: all 500ms ease;
  cursor: zoom-in;
}
.pCell img {
  width: 98%;
  height: 70%;
  border-radius: 10%;
  margin-bottom: 0px;
  cursor: zoom-in;
}
.pCell a p{
  text-align: center;
  color: white;
  font-size: 32px;
  font-family: 'Genos', sans-serif;
}
.pCell a:hover {
  cursor: zoom-in;
}
.pCell a:visited {

}
#extra h2 {
  position: relative;
  background-color: red;
  border-radius: 30px;
  margin: 30px;
  color: white;
  text-align: center;
  letter-spacing: 3px;
  font-family: 'Gajraj One', cursive;
  font-size: 30px;
}
.wip {
  position: relative;
  text-align: center;
  background-color: rgba(256, 256, 256, 0.5);
  border-radius: 20px;
  margin: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
.overlay img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/static.gif");
  opacity: 0.15;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 2000;
}

/*MOBILE*/
@media screen and (max-width:1024px) {
  body {
    background-color: #4D4D4D;
  }
  #head h1 {
    font-size: 30px;
    font-family: 'Gajraj One', cursive;
    color: white;
    background-color: red;
    width: 70%;
    border: 30px;
    border-radius: 30px;
    position: fixed;
    z-index: 1000;
  }
  .dot {
    position: relative;
    top: -100px;
    height: 150px;
    width: 150px;
    background-color: grey;
    border-radius: 50%;
    display: inline-block;
    align-self: center;
  }
  .dot img {
    height: 148px;
    width: 148px;
    display: inline;
    align-self: center;
    border-radius: 50%;
    z-index: 1;
  }
}


/*MOBILE low*/
@media screen and (max-width:500px) {
  body {
    background-color: #4D4D4D;
  }
  #head h1 {
    font-size: 30px;
    font-family: 'Gajraj One', cursive;
    color: white;
    background-color: red;
    width: 90%;
    border: 30px;
    border-radius: 30px;
    position: fixed;
    z-index: 1000;
  }
  .dot {
    position: relative;
    top: -90px;
    height: 120px;
    width: 120px;
    background-color: grey;
    border-radius: 50%;
    display: inline-block;
    align-self: center;
  }
  .dot img {
    height: 118px;
    width: 118px;
    display: inline;
    align-self: center;
    border-radius: 50%;
    z-index: 1;
  }
}
