@import url('https://fonts.googleapis.com/css2?family=Protest+Guerrilla&display=swap');

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

body {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  color: wheat;
}

#logo {
  width: 20vw;
  max-width: 150px;
  min-width: 100px;
}

h1 {
  color: aliceblue;
  font-family: "Protest Guerrilla", sans-serif;
  font-size: 5vw;
  line-height: 1.4;
}

#name {
  color: rgb(212, 43, 122);
  font-size: 6vw;
}

#va {
  color: rgb(43, 206, 212);
  font-size: 6vw;
}

#voice {
  width: 80px;
  display: none;
}

#btn {
  width: 80%;
  max-width: 400px;
  background: linear-gradient(to right, rgb(21, 145, 207), rgb(201, 41, 116));
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  border-radius: 20px;
  color: white;
  box-shadow: 2px 2px 10px rgb(21, 145, 207), 2px 2px 10px rgb(201, 41, 116);
  border: none;
  transition: all 0.5s;
  cursor: pointer;
}

#btn:hover {
  box-shadow: 2px 2px 20px rgb(21, 145, 207), 2px 2px 20px rgb(201, 41, 116);
  letter-spacing: 1px;
}

/* Mobile-specific tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 6vw;
  }

  #name, #va {
    font-size: 7vw;
  }

  #btn {
    font-size: 16px;
    padding: 10px 16px;
  }

  #voice {
    width: 60px;
  }
}
#para{
  font-size: 20px;
  font-family: arial, sans-serif;
  color: rgb(205, 246, 41);
  font-size: 20px;
  font-style: italic;
  box-shadow: 2px 2px 10px rgb(21, 145, 207), 2px 2px 10px rgb(201, 41, 116);
  padding: 10px;
  margin-top: 20px; 
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);  
}