@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;
    flex-direction: column;
    gap: 30px;
}
#logo{
    width: 50vh;
}
h1{
    color: aliceblue;
    font-family: "Protest Guerrilla", sans-serif;
}
#name{
    color:rgba(137, 43, 226, 0.635);
    font-size: 45px;
}
#va{
    color:rgba(0, 0, 255, 0.735);
    font-size: 45px;
}
#voice{
    width:250px;
    display: none;
}
#btn{
    width: 30%;
    background:blue;
    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 blue,2px 2px 10px blueviolet;
    border: none;
    transition: all 0.5s;
    cursor: pointer;
} 
#btn:hover{
    box-shadow: 2px 2px 20px blue,2px 2px 20px blueviolet; 
    letter-spacing: 2px;
}  






 