*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
#logo{
    width: 20vw;
    
    
}
h1{
   color: aliceblue;
}
#name{
    font-size: 40px;
    color: lightseagreen;
}
#va{
    font-size: 40px;
    color: lightseagreen;
}
#voice{
    width: 150px;
}
#listenButton{
    width: 30%;
    color: white;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    display: flex;
    cursor: pointer;
    font-size: 20px;
    border-radius:20px ;
    box-shadow: 2px 2px 10px blue,2px 2px 10px gray;
    background: linear-gradient(to right,blue,gray);
    transition:all 0.5%
    

}
#listenButton:hover{
    box-shadow: 2px 2px 20px blue,2px 2px 20px gray;
    letter-spacing: 2px;
}