@import url('https://fonts.googleapis.com/css2?family=Protest+Guerrilla&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    
    height:100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;

}


#logo{
    width: vw;
    height: 40x;

}

h1{
    color: aliceblue;
    font-family: "Protest Guerrilla", sans-serif;

}
#name{
    color:rgb(195, 19, 69);
    font-size: 50px;
}

#va{
    color:rgb(13, 131, 161);
    font-size: 40px;
}
#voice{
    width: 150px;
    display: none;
}
#btn{
    width: 30%;
    background:linear-gradient(to right,rgb(7, 191, 148),blue );
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    border-radius: 05px;
    color: white;
    box-shadow: 2px 2px 10px ,rgb(119, 255, 0), 2px 2px 10px rgb(8, 154, 207);
    border: none;
    transition: all 0.5;
    cursor: pointer;


}
#btn:hover{
    box-shadow: 2px 2px 20px ,rgb(0, 255, 225), 2px 2px 20px rgb(8, 154, 207);
    letter-spacing: 2px;
}