@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-image: url('star.jpg');
  display: flex;
  flex-direction: column;
  align-items: center;
  image-rendering: pixelated;
}

header{
  background-image: url('beach.png');
  background-size:100% 125px;
  margin-top: 6px;
  margin-bottom: 6px;
  width: 96%;
  height: 125px;
  padding: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius:20px;
  border: blue 4px solid;
  font-family: "Press start 2p", "sans-serif";
  font-size: 15px;
}

header h1{
  background: linear-gradient(180deg, white, lightblue);
  background-clip: text;
  color: transparent;
}

.pixel1{
  background: linear-gradient(90deg, transparent, #7724d1, darkblue, #7724d1, transparent);
  width: 100%;
  display: flex;
  justify-content: center;
  column-gap: 5px;
}

.pixel1 img{
  width: 20px;
  height: 20px;
}

main{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro{
  margin: 8px 0 8px 0;
  height: max-height;
  width: 98%;
  padding: 30px;
  border: #2418c7 3px solid;
  border-radius: 40px;
  font-family: "ubuntu", "sans-serif";
  color: white;
  background: #180147;
  text-align:center;
}

.pasta{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
  height: 500px;
  width: 95%;
  border-radius:20px;
  margin: 12px 0 12px 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(56, 6, 234, 0.39);
  padding: 18px 12px 18px 12px;
}

.personagem{
  width: 100%;
  height: max-height;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.info{
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, white, #d9bfff);
  position: relative;
  border-radius: 40px;
  border: 4px solid blue;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-right: 30px;
  row-gap: 8px;
}

.info h2{
  font-style:italic;
  font-family: "Press start 2p";
  font-size: 16px;
  background: linear-gradient(180deg, darkblue, blue);
  background-clip: text;
  color: transparent;
}

.show{
  width: 130px;
  height: 130px;
  z-index: 1;
  position: absolute;
  border-radius: 50%;
  left: 15px;
  top:425px;
}

.show:hover{
  animation: spin 5s infinite linear;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.pbox{
  height: 50px;
  width: 220px;
  text-align: center;
  padding: 5px;
  overflow-y: auto;
  border: 2px solid #a3a9ff;
  border-radius: 20px;
  color: darkblue;
  font-family: "ubuntu", "sans serif";
}

.voltar{
  margin: 50px 0 12px 0;
}

.voltar a{
  width: 200px;
  height: 40px;
  background: linear-gradient(180deg, rgba(45, 2, 120, 1) 0%, rgba(105, 0, 171, 1) 100%);
  border-radius:20px;
  border: 4px #b46eff solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-family: "ubuntu", "sans serif";
}

.voltar a:hover{
  transform: scale(1.3);
  filter: brightness(150%);
  transition: 0.8s;
}

footer{
  margin-top: 50px;
  background-image: url("space.png");
  background-size: 200px;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.redes{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
}

.redes h2{
  margin-top: 10px;
  font-family: "press start 2p";
  font-size: 18px;
  text-align: center;
  background: linear-gradient(180deg, white, #b2abff);
  background-clip: text;
  color: transparent;
}

.redes a{
  width: 70%;
  background: linear-gradient(90deg, darkblue, transparent);
  text-decoration: none;
  color: white;
}

.redes a:hover{
  text-shadow: 0 0 5px white;
  font-style: italic;
  background: linear-gradient(90deg, blue, transparent);
  transition: 0.5s;
}

.compartilhar{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap:5px; 
  color: white;
  font-family: "ubuntu", "sans serif";
}

textarea{
  background: linear-gradient(180deg, white, lightblue);
}