*{
    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;

}
#logo{
    width: 40vw;

}
h1{
    color: whitesmoke;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal;
     
}
#name{
    color: rgb(236, 92, 152);font-size: 45px;;
    font-size: 50px;
}
#va{
    color: aqua;
    font-size: 50px;
}
#voice{
    width: 200px;
    display: none;

}
#btn{
    width: 30%;
    background: linear-gradient(to right,pink,rgb(111, 161, 241));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    font-size: 20px;
    border-radius: 20px;
    color: azure;
    box-shadow : 2px 2px 11px rgb(101, 101, 250),2px 2px 11px rgb(238, 119, 240);
    border: none;
    transition: all 0.5s;
    cursor: pointer;
}
#btn:hover{
    box-shadow: 2px 2px 20px rgb(164, 92, 231),2px 2px 20px rgb(222, 127, 239);
    letter-spacing : 2px;

} 
#btn svg {
    width: 24px;
    height: 24px;
}

