
@import url('https://fonts.googleapis.com/css2?family=Tagesschrift&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: 15vw;
    height: 50vh;

}
h1{
    color: aliceblue;
    font-family: "Tagesschrift", system-ui;

}
#name{
    color: rgb(216, 80, 26);
    font-size:40px;
}
#va{
    color:rgb(60, 10, 135);
    font-size: 40px;
}

#voice{
   
    width: 150px;
    height: 100px;
}
#btn{
    width: 40%;
    background:linear-gradient(to right,rgb(216, 80, 26),rgb(60, 10, 135));
    padding:10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    border-radius: 20px;
    border: none;
    color: black;
    box-shadow: 2px 2px 10px rgb(216, 80, 26),2px 2px 10px rgb(60, 10, 135);
    transition: all 0.5s;
    cursor: pointer;
}
#btn:hover{
   
    letter-spacing: 1px;
}