@import url('https://fonts.googleapis.com/css2?family=Protest+Guerrilla&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction:column ;
}
/* to keep ai1 photo acc to us */

#ai1{
    width: 30vw;
}
h1{
    font-family: "Protest Guerrilla", sans-serif;
    color: aliceblue;
}
#name{
   color: rgb(212, 43, 122); 
   font-size: 45px;
}
#va{
    color: rgb(43,206,212);
    font-size: 45px;
}
#voice{
    font-size: 50px;
    display: none;
}
#btn{
    width: 30%;
    background: linear-gradient(to right,rgb(21,145,207),rgb(201, 41, 116));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    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 {
    width: auto;   /* instead of 30% */
    padding: 10px 20px;  /* extra space left & right */
    white-space: nowrap; /* force text to stay in one line */
}

#btn:hover{
       box-shadow:2px 2px 20px rgb(21, 145, 207),2px 2px 20px rgb(201, 41, 116);
       letter-spacing: 2px;
 
}