@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Protest+Guerrilla&family=Roboto:wght@400;500;700&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;
    gap: 30px;
    flex-direction: column;
}
#logo{
    width: 25vw;
}
h1{
    color: aliceblue;
    font-family: "Exo 2", sans-serif;
}
#name{
    color: rgb(121, 22, 104);
    font-size: 45px;
}
#va{
    color: rgb(13, 193, 199);
    font-size: 45px;
}
#voice{
    width: 200px;
    display: none;
}
#btn{
    width: 30%;
    background: linear-gradient(to right,rgb(219, 11, 202),rgb(14, 212, 226));
    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 rgb(219, 11, 202),2px 2px 10px rgb(14, 212, 226);
    border: none;
    transition: all 0.5s;
    cursor: pointer;
}
#btn:hover{
    box-shadow: 2px 2px 20px rgb(219, 11, 202),2px 2px 20px rgb(14, 212, 226);
    letter-spacing: 0.5px;
}