@import url('https://fonts.googleapis.com/css2?family=Rubik+Glitch&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: 20vw;
}
h1{
    color: aliceblue;
    font-family: "Protest Guerrilla", sans-serif;
}
#name{
    color: rgb(5, 247, 247);
    font-size: 45px;
}
#va{
    color: rgb(247, 5, 105);
    font-size: 45px;
}
#voice{
    width: 150px;
    display: none;
}
#btn{
    width: 30%;
    background: linear-gradient(to right, rgb(6, 143, 161),rgb(187, 11, 134));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    font-size: 20px;
    border-radius: 20px;
    color: aliceblue;
    box-shadow: 2px 2px 10px rgb(0, 225, 255),2px 2px 10px rgb(255, 0, 179);
    border: none;
    transition: all 0.5s;
    cursor: pointer;
    }
    #btn:hover{
        box-shadow: 2px 2px 20px rgb(0, 225, 255),2px 2px 20px rgb(255, 0, 179);
        letter-spacing: 3px;

    }