
@import url('https://fonts.googleapis.com/css2?family=Protest+Guerrilla&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

#logo{
    width: 20vw;
}
h1{
    color: white;
    font-family: "Protest Guerrilla", serif;
}
#name{
    color:rgb(91, 124, 203) ;
}
#voice{
width: 250px;
display: none;
}
#btn{
    background: linear-gradient(to right,rgb(87, 99, 172),rgb(91, 124, 203));
    width: 30%;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    border-radius: 20px;
    color: white;
    box-shadow: 2px 2px 10px rgb(87, 99, 172), rgb(91, 124, 203);
    border: none;
    transition: all 0.5s;
}
#btn:hover{
    box-shadow: 10px,5px 20px  rgb(87,99,172) ,  rgb(99, 29, 174) ;
    letter-spacing: 5px;
}