@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&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: rgba(239, 238, 237, 0.913);
    font-family: "Bebas Neue", sans-serif;
}


    
#name{
    color: rgb(255, 209, 5);
    font-size: 45px;
    
}
#va{
    color: aqua; 
    font-size: 40px;
    
 }

#voice{
    width: 200px;
    display: none;
}
#btn{
    width: 25%;
    background: linear-gradient(to right,rgb(209, 21, 21), rgb(4, 4, 243));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 20px;
    border-radius: 20px;
    color: white;
    box-shadow: 2px 2px 10px rgb(29, 141, 198),2px 2px 10px rgb(163, 28, 91);
    border: none;
    transition: all 0.5s;
    cursor: pointer;
}
#btn:hover{
    box-shadow: 2px 2px 15px rgb(29, 141, 198),2px 2px 10px rgb(163, 28, 91);
    letter-spacing: 2px;
}

@media screen and (max-width: 650px) {
    #btn-content{
        display: none;
  }
}

@media screen and (max-width: 530px) {
    #btn {
        margin-top: 25%;
        width: 50%; 
        font-size: 18px;
    }
}
@media screen and (max-width: 487px) {
    #va {
        font-size: clamp(20px, 5vw, 35px); 
        justify-content: center;
    }
}

@media screen and (max-width: 290px) {
    #I {
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
}