@import url('https://fonts.googleapis.com/css2?family=Rubik+Distressed&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap:30px;
    flex-direction: column;
}
#logo{
    width: 20vw;
}
h1{
    color:rgb(255, 255, 255);
    font-family: "Rubik Distressed", system-ui;
}
#name{
    color: rgba(192, 18, 222, 0.654);
    font-size: 50px;
}
#va{
    color:rgb(11, 175, 229);
    font-size: 45px;
}
#voice{
    width: 150px;
    display: none;
}
#btn{
    width: 30%;
    background: linear-gradient(to right,rgb(6, 154, 195),rgb(105, 7, 151));
    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(6, 154, 195),2px 2px,10px rgb(105, 7, 151);
    border: none;
    transition: all 0.5s;
    cursor: pointer;
}
#btn:hover{
        box-shadow: 2px 2px 20px rgb(6, 154, 195),2px 2px,20px rgb(105, 7, 151);
        letter-spacing: 2px;
}