body,
html {
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
}

.titulo {
  width: 100%;
  background-color: black;
  position: fixed;
  top: 0;
  z-index: 2;
}

img {
    max-height: 380px;
}

h1,
h4 {
  color: white;
  padding-left: 15px;
}

a {
  text-decoration: none;
}

.barramenu {
  width: 100%;
  background-color: #9e9e9e;
  z-index: 2;
  padding-left: 15px;
}

button {
  background-color: #9e9e9e;
  font-family: Verdana, sans-serif;
  transition-duration: 0.4s;
  font-size: 15px;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #f1f1f1;
}

.rp {
  width: 100%;
  color: white;
  background-color: black;
  position: fixed;
  bottom: 0;
  z-index: 2;
}

.arp {
  margin: 0px;
  color: white;
}

.hyperdrive {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 500px;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 50% 70%, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 80% 40%, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 10% 90%, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1.5px 1.5px at 90% 10%, #fff, rgba(0, 0, 0, 0));
  background-size: 400px 400px;
  opacity: 0;
  animation: warp 1s infinite linear;
}

.stars:nth-child(2) {
  animation-delay: 0.3s;
  background-size: 300px 300px;
}

.stars:nth-child(3) {
  animation-delay: 0.6s;
  background-size: 500px 500px;
}

@keyframes warp {
  0% {
    transform: translateZ(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateZ(400px) scale(5);
    opacity: 0;
  }
}

.meio {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home {
  width: 310px;    
  height: 55vh;  
  z-index: 2;
  border-radius: 32px;
  background: #e0e4e7;
  box-shadow:
    0 4px 10px 0 rgba(0, 0, 0, 0.2),
    0 4px 20px 0 rgba(0, 0, 0, 0.19);  
}

.botao {
  background: #e0e4e7;
  box-shadow:
    5px 5px 13px #b8c7dd,
    -5px -5px 13px #ffffff;
  color: #646464;
  padding: 15px;
  border-radius: 15px;
  margin: 15px;
}

.botao:hover {
  background-color: #4caf50; /* Green */
  color: white;
}

.cert {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
  overflow: auto;
  max-height: 500px;
  z-index: 2;
  border-radius: 32px;
  background: #e0e4e7;
  padding: 15px;
  box-shadow:
    0 4px 10px 0 rgba(0, 0, 0, 0.2),
    0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.barro::-webkit-scrollbar {
  width: 10px;
}

.barro::-webkit-scrollbar-track {
  background: transparent;
}

.barro::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.barro:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3); /* Cor cinza clara transparente */
}