@import url('https://fonts.googleapis.com/css2?family=Sixtyfour+Convergence&family=Spicy+Rice&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}
#logo{
    width: 30vw;

}
h1{
    color: antiquewhite;
    font-family: "Sixtyfour Convergence", sans-serif;
}
#name{
    color: aqua;
    font-size: 40px;
}
#voice{
    width: 80px;
    display: none;
    
}
#btn{
    width: 30%;
    background: aqua;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    border-radius: 20px;
    border: none;
    box-shadow: 0px 0px 20px aqua;
    transition: 2s;
    cursor: pointer;
}
#btn:hover{
    box-shadow: none;
    letter-spacing: 2px;
}

@media screen and (max-width: 480px){
    #btn{
        width: 307px;
    }
    h1 {
        font-size: 22px;
        text-align: center;
    }
    #logo {
        width: 58vw;
    }
}