body{
  margin: 0px;
  font-family: 'Roboto Mono', monospace;
}

/* The navigation bar */
.navbar {
  word-spacing: 0.1px;
  overflow: hidden;
  background-color: #333;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  z-index: 2;
}

/* Links inside the navbar */
.navbar a {
  word-spacing: 0.1px;
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}

a{
  text-decoration: none;
  color:black;
} 

header{
    height: 100vh;
}

header div{
    display: flex;
    width: 100%;
    height: 100vh;
    align-content: center;
    align-items: center;
    position: absolute;
    justify-content: center;
}

header div p{
    font-family: 'Merriweather', serif;
    font-size: 150px;
    color: white;
    z-index: 1;
}

header section{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

header section article{
    width: 100%;
    height: 100vh;
}

#bg2{
    background-image: url("img/base_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.6);
    z-index: 0;
}

.gamejams{
  background: rgb(133,130,130);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  min-height: 100vh;
}

.gamejams h1{
  filter: brightness(1);
  margin-top: 0px;
  text-align: center;
  font-size: 60px;
  color: rgb(240, 240, 240);
  font-family: 'Libre Baskerville', serif;
  padding-top: 3%;
}

.gamejams div{
  filter: brightness(1);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.gamejams div article{
  filter: brightness(1);
  width: 300px;
  border: rgb(14, 14, 14) 5px;
  min-height: 60vh;
  margin-top: 2%;
  margin-bottom: 2%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.gamejams div article p{  
  filter: brightness(1);
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
  font-size: 25px;
  color: #1a1919;
}


.gamejams div article img{  
  filter: brightness(1);
  height: 200px;
  transition: 0.7s
}

.gamejams div article img:hover{  
  filter: brightness(1);
  transform: rotate(10deg) scale(1.1);
  
}

.projects{
  background: rgb(92, 88, 88);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  min-height: 100vh;
}

.projects h1{
  filter: brightness(1);
  margin-top: 0px;
  text-align: center;
  font-size: 60px;
  color: rgb(240, 240, 240);
  font-family: 'Libre Baskerville', serif;
  padding-top: 3%;
}

.projects div{
  filter: brightness(1);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.projects div article{
  filter: brightness(1);
  width: 300px;
  border: rgb(14, 14, 14) 5px;
  min-height: 60vh;
  margin-top: 2%;
  margin-bottom: 2%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.projects div article p{  
  filter: brightness(1);
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
  font-size: 25px;
  color: #1a1919;
}


.projects div article img{  
  filter: brightness(1);
  height: 200px;
  transition: 0.7s
}

.projects div article img:hover{  
  filter: brightness(1);
  transform: rotate(10deg) scale(1.1);
  
}


.whoiam{
  background: rgb(27, 27, 27);
  min-height: 100vh;
}

.whoiam h1{
  margin-top: 0px;
  text-align: center;
  font-size: 60px;
  color: rgb(240, 240, 240);
  font-family: 'Libre Baskerville', serif;
  padding-top: 3%;
}

.whoiam div{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.whoiam div article{
  width: 300px;
  border: hidden red 1px;
  min-height: 60vh;
  margin-top: 2%;
  margin-bottom: 2%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.whoiam div article p{  
  margin-right: 10px;
  margin-left: 10px;
  text-align: left;
  color: rgb(240, 240, 240);
}

.whoiam div article img{  
  height: 200px;
  transition: 0.7s
}

.whoiam div article img:hover{  
  transform: rotate(10deg) scale(1.1);
  
}

#clicli{
  animation-name: cli;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.download{
  height: 100vh;
}

.download div{
  display: flex;
  width: 100%;
  height: 100vh;
  align-content: center;
  align-items: center;
  position: absolute;
  justify-content: center;
}

.download div a{
 z-index: 1;
 font-family: 'Libre Baskerville';
 font-size: 100px;
 color: rgba(255, 255, 255, 0.568);
 transition: 0.3s;
}

.download div a:hover{
  color: rgb(255, 255, 255);
  transform: scale(0.95);
}

.download section{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.download section article{
  width: 100%;
  height: 100vh;
}

.bg_dl2{
  background-image: url("img/dl_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5) grayscale(40%);
  z-index: 0;
  transition: 0.3s;
}

.bg_dl{
  filter: brightness(0.7) grayscale(0%);
  background-image: url("img/dl_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  transition: 0.3s;
}

.thanks{
  background: rgb(27, 27, 27);
  min-height: 100vh;
}

.thanks h1{
  margin-top: 0px;
  text-align: center;
  font-size: 60px;
  color: rgb(240, 240, 240);
  font-family: 'Libre Baskerville', serif;
  padding-top: 3%;
}

.thanks div{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  perspective: 100vh;
}

.thanks div article{
  width: 400px;
  border: solid rgb(19, 19, 19) 3px;
  border-radius: 5px;
  background: rgb(31, 31, 31);
  min-height: 55vh;
  margin-top: 2%;
  margin-bottom: 2%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#left{
  transform: rotate3d(0,1,0,0deg);
  transition: 0.3s;
}

#right{
  transform: rotate3d(0,1,0,0deg);
  transition: 0.3s;
}

#left:hover{
  transform: rotate3d(0,1,0,30deg);
}

#right:hover{
  transform: rotate3d(0,1,0,-30deg);
}

.thanks div article p{  
  margin-right: 20px;
  margin-left: 20px;
  text-align: center;
  color: rgb(240, 240, 240);
  font-size: 17px;
}

.thanks div article img{  
  height: 200px;
  transition: 0.7s
}

.thanks div article img:hover{  
  transform: rotate(10deg) scale(1.1);
  
}

.whoiamTitle{
  font-size: 25px;
}

.gamejamsTitle{
  color: blue;
  font-size: 25px;
}

.thanksTitle{
  font-size: 30px;
  font-weight: normal;
  margin-right: 20px;
  margin-left: 20px;
  text-align: center;
  color: rgb(240, 240, 240);
  font-family: 'Roboto Mono', monospace;
}

#clicli{
  animation-name: cli;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#theorainbow{
  text-decoration: underline;
}

#theorainbow:hover{
  animation-name: rainbow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

footer{
  padding: 1px;
  background: rgb(31, 31, 31);
}

footer p{
  font-size: 20px;
  color: white;
  font-family: 'Roboto Mono', monospace;
  text-align: center;
}

@keyframes cli{
  0% {
    color: rgb(240, 240, 240);
  }
  50% {
    color: rgba(240, 240, 240, 0);
  }
  100% {
    color: rgb(240, 240, 240);
  }
}

@keyframes rainbow {
  0% {
    color: white;
  }
  12% {
    color: rgb(50, 75, 185);
  }
  25% {
    color: rgb(64, 192, 64);
  }
  37% {
    color: rgb(241, 241, 64);
  }
  50% {
    color: rgb(209, 42, 42);
  }
  62% {
    color: rgb(241, 241, 64);
  }
  75% {
    color: rgb(64, 192, 64);
  }
  87% {
    color: rgb(50, 75, 185);
  }
}

@media (max-width: 1200px)
{
  .whoiam{
    min-height: unset;
  }

  .whoiam div article{
    width: 400px;
    min-height: unset;
  }
  
  .whoiam div article p{  
    margin-right: 10px;
    margin-left: 10px;
    text-align: left;
    color: rgb(240, 240, 240);
  }
  
  .whoiam div article img{  
    height: 200px;
    transition: 0.7s
  }
  
  .whoiam div article img:hover{  
    transform: rotate(0deg) scale(1);
    
  }

  .gamejams{
    min-height: unset;
  }

  .gamejams div article{
    width: 400px;
    min-height: unset;
  }
  
  .gamejams div article p{  
    margin-right: 10px;
    margin-left: 10px;
    text-align: left;
    color: #1a1919;
  }
  
  .gamejams div article img{  
    height: 200px;
    transition: 0.7s
  }
  
  .gamejams div article img:hover{  
    transform: rotate(0deg) scale(1);
    
  }
}

@media (max-width: 800px)
{
  header div p{
    font-family: 'Merriweather', serif;
    font-size: 17vw;
    color: white;
    z-index: 1;
}

  .whoiam{
    background: rgb(27, 27, 27);
    min-height: unset;
  }
  
  .whoiam h1{
    font-size: 10vw;
    padding-top: 10%;
  }
  
  .whoiam div{
    flex-direction: column;
    justify-content: center;
  }
  
  .whoiam div article{
    width: 95%;
    min-height: unset;
    margin-top: 2%;
    margin-bottom: 2%;

    flex-direction: column;
    justify-content: center;
  }
  
  .whoiam div article p{  
    margin-right: 10px;
    margin-left: 10px;
    text-align: left;
    color: rgb(240, 240, 240);
  }
  
  .whoiam div article img{  
    height: 175px;
    transition: 0.7s
  }
  
  .whoiam div article img:hover{  
    transform: rotate(1deg) scale(1);
  }

  .gamejams{
    background: rgb(27, 27, 27);
    min-height: unset;
  }
  
  .gamejams h1{
    font-size: 10vw;
    padding-top: 10%;
  }
  
  .gamejams div{
    flex-direction: column;
    justify-content: center;
  }
  
  .gamejams div article{
    width: 95%;
    min-height: unset;
    margin-top: 2%;
    margin-bottom: 2%;

    flex-direction: column;
    justify-content: center;
  }
  
  .gamejams div article p{  
    margin-right: 10px;
    margin-left: 10px;
    text-align: left;
    color: #1a1919;
  }
  
  .gamejams div article img{  
    height: 175px;
    transition: 0.7s
  }
  
  .gamejams div article img:hover{  
    transform: rotate(1deg) scale(1);
  }

  .download{
    height: 100vh;
  }
  
  .download div{
    display: flex;
    width: 100%;
    height: 100vh;
    align-content: center;
    align-items: center;
    position: absolute;
    justify-content: center;
  }
  
  .download div a{
   z-index: 1;
   font-family: 'Libre Baskerville';
   font-size: 12vw;
   color: rgba(255, 255, 255, 0.568);
   transition: 0.3s;
  }
  
  .download div a:hover{
    color: rgb(255, 255, 255);
    transform: scale(0.95);
  }
  
  .download section article{
    width: 100%;
    height: 100vh;
  }

  .thanks{
    background: rgb(27, 27, 27);
    min-height: unset;
  }
  
  .thanks h1{
    margin-top: 0px;
    text-align: center;
    font-size: 9vw;
    color: rgb(240, 240, 240);
    font-family: 'Libre Baskerville', serif;
    padding-top: 10%;
  }
  
  .thanks div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    perspective: 100vh;
  }
  
  .thanks div article{
    width: 400px;
    border: solid rgb(19, 19, 19) 3px;
    border-radius: 5px;
    background: rgb(31, 31, 31);
    min-height: unset;
    margin-bottom: 10%;
  }

  
  #left:hover{
    transform: rotate3d(0,1,0,0deg);
  }
  
  #right:hover{
    transform: rotate3d(0,1,0,0deg);
  }
  
  .thanks div article p{  
    margin-right: 20px;
    margin-left: 20px;
    text-align: center;
    color: rgb(240, 240, 240);
    font-size: 17px;
  }
  
  .thanks div article img{  
    height: 200px;
    transition: 0.7s
  }
  
  .thanks div article img:hover{  
    transform: rotate(0deg) scale(1);
  }

  footer p{
    font-size: 3vw;
  }
}

