:root {
  --text: #e7d9e9;
  --base: rgb(25, 110, 30);
  --accent: rgb(147, 58, 250);
  --secondary: rgb(121, 85, 101);
  --dark:  rgb(13, 15, 13);
}

body {
  
 background-color: var(--accent);
  color: var(--text);
  font-family: 'Source Code Pro', monospace;
  font-weight: 300;
  margin: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

 .textbox {
      width: 80%;
      max-width: 500px;
      background: var(--base);
      border: 3px solid black;
      padding: 10px;
      font-family: 'Source Code Pro', monospace;
      text-align: center;
      cursor: pointer;
      margin: 20px auto;
      box-shadow: 4px 4px 0 black;
    }

.hidden {
  display: none;
}
.chibi{
  margin-bottom: 12px;
}
.row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.box {
  width: 40vw;
  border: solid 8px var(--accent);
  background-color: var(--base);
  color: black;
  padding: 12px 20px;
  text-align: left;
  margin: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}

img {
  width: 200px;
  height: auto;
}

@keyframes pokemonAppear {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(0.3);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pokemon {
  margin: 0;
  width: auto;
  max-height: 250px;
  min-height: 200px;
  animation: pokemonAppear 2s ease-out forwards;
}

button {
  
  border: none;

  margin: 10px;
  color: black;
 
  border-radius: 4px;
  cursor: pointer;

 border-radius: 14px;
      background: var(--secondary);
      border: 4px solid black;
      padding: 8px;
      font-family: 'Source Code Pro', monospace;
      text-align: center;
      cursor: pointer;
      margin: 4px auto;
      box-shadow: 4px 4px 0 black;
}

button a {
  color: white;
  text-decoration: none;
}

.girl-container {
  position: relative;
  display: flex;
}

.girl {
  width: 200px;
  height: 200px;
  animation: girlFloat 3s ease-in-out infinite;
  object-fit: cover;
  cursor: pointer;
}

.girl-container:hover::after {
  content: "I LOVE Espeon :3";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--base);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 1;
  pointer-events: none;
  z-index: 10;
}

.background-image {
  width: 50vw;
  height: 50vh;
  background-image: url('../pictures/backgrounds/lab.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  border: solid 4px  var(--base);
  border-radius: 23px;
  position: relative;
}
.abs{
  position: absolute;
  right: 22%;
  
}
.abs img{
 width: 120px;

  
}
.mobile{
  display: none;
}
  .hidden {
      display: none;
    }
@media (max-width: 600px) {
body {
  
 background-color: var(--dark);
  color: var(--text);
}
  /* show */
 .mobile {
   display: block;
   align-items: center;
    width: 40vw;
    border: solid 8px var(--base);
    background-color: var(--secondary);
    color: black;
    padding: 12px 20px;
    text-align: left;
    margin: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px var(--accent);
    font-size: 18px;
  
 }

 /* hide */
 .background-image{
  display: none;

}
.abs{
  display: none;
}
.box{
  display: none;
}


}