*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}
#logo{
    width: 30vw;
    margin-top: 90px;
}
h1{
    color: aliceblue;
    font-family:'Times New Roman', Times, serif;
}
#name{
    color: rgb(251, 7, 76);
    font-size: 40px;
}
#va{
    color: rgb(81, 9, 235);
    font-size: 42px;
}
#voice{
    width: 230px;
    display: none;
}
#btn{
background:linear-gradient(to right,red,blue);
padding: 5px;
display: flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 17px;
gap:3px;
font-size:18px;
color:aliceblue;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
height: 70px;
box-shadow: 2px 2px 10px rgb(21, 145, 207),2px 2px 10px rgb(21, 145, 207);
transition: all 0.5s;
cursor: pointer;
}
#ima{
    height: 60px;
    width: 47px;
}
#btn:hover{
box-shadow: 2px 2px 20px rgb(21, 145, 207)2px 2px 20px rgb(5, 165, 101);
letter-spacing: 2px;
}