@import url('https://fonts.googleapis.com/css2?family=Fascinate+Inline&family=Protest+Guerrilla&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:white;
    font-family: "Protest Guerrilla", sans-serif;
}

#name{
    color: rgb(232, 39, 142);
    font-size: 45px;
}
#va{
    color: rgb(4, 207, 222);
    font-size: 45px;
}

#voice{
    height: 6vw;
    width:6vw;
    display: none;
}

#btn{
    width: 30%;
    background: linear-gradient(to right, rgb(21,145,207), rgb(201,41,116));
    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(21,145,207),2px 2px 10px rgb(201,41,116);
    border: none;
    transition: all 0.5s;
}

#btn:hover{
    box-shadow: 2px 2px 20px rgb(21,145,207),2px 2px 20px rgb(201,41,116);
    letter-spacing: 3px;
    cursor: pointer;
}

/* Tablet styles */
@media (max-width: 768px) {
    #logo {
        width: 30vw;
    }

    h1 {
        font-size: 35px;
    }

    #name, #va {
        font-size: 35px;
    }

    #btn {
        width: 40%;
        font-size: 18px;
    }

    #voice {
        height:30vw;
        width:30vw;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    #logo {
        width: 50vw;
    }

    h1 {
        font-size: 28px;
    }

    #name, #va {
        font-size: 28px;
    }

    #btn {
        width: 60%;
        font-size: 16px;
    }
    #voice {
        height:20vw;
        width:20vw;
    }
}
@media (max-width: 390px) {
    #logo {
        width: 60vw;
    }

    h1 {
        font-size: 15px;
    }

    #name, #va {
        font-size: 28px;
    }

    #btn {
        width: 60%;
        font-size: 16px;
    }
    #voice {
        height:20vw;
        width:20vw;
    }
}
