@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Guerrilla&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Condensed+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
#logo{
    width: 20vw;
}
h1{
    color: #fff;
    font-family: "Protest Guerrilla", sans-serif;
    font-weight: 500;
}
#name{
    color: rgb(89, 156, 243);
    font-size: 45px;
}
#va{
    color: rgb(247, 148, 56);
    font-size: 45px;
}
#voice{
    width: 150px;
    display: none;
}
#btn{
    width: 25%;
    background: linear-gradient(to right, rgb(255, 130, 13), rgb(38, 127, 245));
    border: none;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 18px;
    color: #fff;
    box-shadow: 2px 2px 10px rgb(255, 130, 13), 2px 2px 10px rgb(38, 127, 245);
    transition: all 0.5s;
    cursor: pointer;
}
#btn:hover{
    box-shadow: 2px 2px 20px rgb(255, 130, 13), 2px 2px 20px rgb(38, 127, 245);
    letter-spacing: 1px;
}
#btn i{
    font-size: 20px;
    padding-right: 10px;
}
