@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background-color: black;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}
#logo{
    width: 25vw;
    border-radius: 40%;
}
h1{
    color: aliceblue;
    font-family: "Pacifico", serif;
}
#name{
    color: rgb(236, 8, 202);
    font-size: 50px;
}
#va{
    color: #1710f2;
    font-size: 50px;
}
#voice{
    width: 100px;
    display: none;
}
#btn{
   width: 30%;
   background: linear-gradient(rgb(7, 226, 117),#cf0aed);
   padding: 10px;
   align-items: center;
   justify-content: center;
   gap: 30px;
   font-size: 20px;
   border-radius: 20px;
   color: white;
   box-shadow: 2px 2px 10px #0a15ed;
   border: none;
   transition: all 0.9s;
   cursor: pointer;

}
#btn:hover{
    box-shadow: 2px 2px 20px #0a15ed;
    letter-spacing: 5px;
}