/* HIDDEN STUFF */
body { 
  background-image: linear-gradient(to top, rgb(12, 12, 12), rgb(48, 48, 48));
  min-height: 100vh;
  min-height: 100dvh;
}

/* Every Page STUFF */
h1 {
  text-align: center;
  text-shadow: 5px 5px rgb(0, 0, 0);
  color: white;
  font-size: 35px;
  font-weight: heavy;
  font-family: 'Inter', sans-serif;
  margin-top: 30px;
}
h2 {
  text-shadow: 2px 2px rgb(0, 0, 0);
  color: red;
  font-family : 'Inter', sans-serif;
  text-align: center;
  font-size: 30px;
}
h3 {
  text-shadow: 2px 2px rgb(0, 0, 0);
  color: yellow;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
footer {
  background-color: #313131;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
/* Every Page STUFF END */

/* Navigation Bar */
.nav-bar ul{
  list-style-type: none;
  background-color: hsl(0, 0%, 25%);
  padding: 10px;
  margin: 0px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.nav-bar a{
  color: white;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  padding: 10px;
  font-size: 20px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.nav-bar a:hover{
  background-color: hsl(0, 0%, 10%);
}
.nav-bar li{
  float: left;
}
/* Navigation Bar END */



/* Home Page */
.itchButton {
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.randomInputs {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
}

.styledbtn {
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  outline: none;
  color: #000000;
  background-color: #a5c200;
  border: 2px solid #000000;
  border-radius: 100px;
  box-shadow: 0 9px #999;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  cursor: pointer;
}
.styledbtn:hover {
  background-color: #788d00
}
.styledbtn:active {
  background-color: #788d00;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.carsonTitle {
  color: lightgreen;
  font-family: 'Inter', sans-serif;
}
.carsonPicture {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Home Page END */



/* Testing Page */
.chipGif {
  margin-top: 15px;
  border-radius: 23%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.AshLowRes {
  margin-bottom: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Testing Page END */



/* Stuff Page */
.game1 {
  margin-top: 10px;
  margin-bottom: 100px;
  border: none;
  display: flex;
  justify-content: center;
}
/* Stuff Page END */



/* About Me Page END */
.about {
  text-align: center;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 25px
}

.gallery-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.gallery{
  display: inline-block;
  border: 1px solid hsl(0, 0%, 60%);
  margin: 5px;
  width: 200px;
  margin-bottom: 100px;
  background-color: hsl(0, 0%, 10%);
  text-align: center;
}
.gallery .description{
  padding: 10px;
  text-align: center;
  color: white;
  font-family: 'Inter', sans-serif;
}
.gallery:hover{
  border: 1px solid hsl(0, 0%, 20%);
}
.gallery img{
  width: 100%;
  height: auto;
}
/* About Me Page END */



/* The Button Page */
.theButton {
  padding: 20px 220px;
  font-size: 20px;
  cursor: pointer;
  outline: none;
  color: #ffffff;
  background-color: #4CAF50;
  border: 2px solid #000000;
  border-radius: 100px;
  box-shadow: 0 9px #999;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  cursor: pointer;
}
.theButton:hover {
  background-color: #316933
}
.theButton:active {
  background-color: #316933;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
/* The Button Page END */