html {
  margin: 0;
}
body {
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgb(70, 70, 70) 50%, rgb(37, 37, 37) 100%);
}

body h1 {
  text-align: center;
  color: rgb(0, 235, 31);
  font-size: 65px;
  font-weight: 800;
  text-shadow: 2px 2px 2px black;
  border: solid 3px rgb(0, 51, 0);
  font-family: Outfit, sans-serif;
  background: rgb(1,74,0);
  background: radial-gradient(circle, rgba(1,74,0,1) 0%, rgba(45,157,41,1) 100%);
  box-shadow: 2px 4px 4px black;
}

@media screen and (max-width: 991px) {
  /* start of large tablet styles */
  .videos {
    overflow-y: hidden;
    width: 100vw;
  }
}
.videos {
  width: auto;
  height: 100%;
  background-image: url(media/transparentlogo.png);
  background-repeat: repeat;
  background-size: 250px 200px;
  background-position: center;
}

.videos h2 {
  color: rgb(28, 255, 7);
  text-align: center;
  font-family: Outfit, sans-serif;
}
.contentwrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.game {
  width: 100px;
  height: 50px;
  background-color: rgb(0, 100, 0);
  border: solid 2px rgb(7, 41, 0);
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 17px;
  padding-top: -12px;
  box-shadow: 1px 3px 3px black;
}

.gamevidwrapper {
  margin-top: 20px;
  display: flex;
  overflow-x: scroll;
  width: 90vw;
  margin-bottom: 50px;
  flex-direction: column;
}

.musicvidwrapper {
  margin-top: 20px;
  display: flex;
  width: 90vw;
  margin-bottom: 50px;
  overflow-x: scroll;
}
.othervidwrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  width: 90vw;
  margin-bottom: 50px;
  justify-content: center;
}

.video_bucket {
  display: flex;
  height: auto;
  margin-top: 20px;
  border-radius: 2px;
  border: 3px solid #0c4e7a;
  margin-right: 20px;
  width: fit-content;
}

.music {
  width: 100px;
  height: 50px;
  background-color: rgb(0, 100, 0);
  border: solid 2px rgb(7, 41, 0);
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 17px;
  padding-top: -12px;
  box-shadow: 1px 3px 3px black;
}

.row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 550px;
}
.other {
  width: 100px;
  height: 50px;
  background-color: rgb(0, 100, 0);
  border: solid 2px rgb(7, 41, 0);
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 17px;
  padding-top: -12px;
  box-shadow: 1px 3px 3px black;
}

body h3 {
  position: fixed;
  bottom: 0;
  right: 0;
  margin-right: 30px;
}

h3 a {
  text-decoration: none!important;
  color: rgb(230, 230, 230);
  border: 1px solid white;
  background-color: rgb(0, 48, 2);
  padding: 3px;
  font-family: Outfit, sans-serif;
}

h3 a:hover {
  color: rgb(47, 255, 64);
  background-color: black;
  border: 3px solid rgb(255, 255, 255);
  transition-duration: 1s;
}