@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');

html {
  height: 100%;
  width: 100%;
}

h4 {
  text-shadow: 0 0 30px rgba(255, 255, 0, 0.7);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-align: center;
  font-size: 5vw;
  line-height: 1.7;
  color: yellow;
  background: linear-gradient(145deg, #1a1a1a, #080808);
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-align: center;
  font-size: 20px;
  margin: 20px 0;
}

.gameimg {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  margin: 15px;
  position: relative;
  float: left;
  margin-right: 10px;
}

.tab-bar {
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  /* Center vertically */
  background-color: #262626;
  padding: 5px 0;
}

.tab-bar p {
  margin: 0 15px;
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
}

.tab {
  margin: 0 15px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
  width: 210px;
}

.tab:hover {
  color: yellow;
}

.tab-content {
  display: none;
  text-align: center;
  margin-top: 50px;
}

.tab-content.active {
  display: block;
}

input {
  font-family: 'Montserrat', sans-serif;
  width: 300px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  text-align: center;
  transition-duration: 1s;
}

input[type="color"] {
  cursor: pointer;
  border-radius: 15px;
  width: 75px;
}

input[type="color"]:hover {
  transform: scale(1);
  background-color: transparent;
}

input:focus {
  width: 600px;
}

button {
  width: fit-content;
  height: 30px;
  border-radius: 10px;
  color: white;
  border-style: solid;
  margin-bottom: 5px;
  background: #adad43;
  cursor: pointer;
}

button:hover {
  background: #6b6b0f;
  color: w;
}

.input2 {
  border: none;
  background: transparent;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  outline: none;
  color: var(--text-secondary);
}

.imgbtn {
  width: 75px;
  height: 75px;
  border-radius: 10px;
}

.btn {
  border-radius: 15px;
  margin-top: 10px;
  background: transparent;
  color: white;
  text-align: center;
  width: 150px;
  height: 30px;
  border-style: solid;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s ease all;
}

* {
  padding: 0;
  margin: 0;
}

.container {}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(11deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(12deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(13deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(14deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(15deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(16deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(17deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(18deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(19deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(20deg);
  }
}

.container:hover {
  animation: shake 0.6s;
  animation-iteration-count: infinite;
}