
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;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: 20vw;
}
h1{
    color: aliceblue;
    font-family: "Rowdies", sans-serif;
}
#name{
    color: rgb(196, 32, 149);
    font-size: 50px;
}
#va{
    color: cyan;
    font-size: 50px;
}
#voice{
    width: 150px;
    display: none;
}
#btn{
    width: 20%;
    background:linear-gradient(to right,cyan,rgb(201,41,116));
    padding: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: white;
    box-shadow: 2px 2px 10px cyan rgb(201,41,116);
    border: none;
    transition: all 0.5s;
    cursor: pointer;

}
#btn:hover{
    box-shadow: 2px 2px 10px cyan rgb(201,41,116);
    font-size: 21px;
}