* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body{
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    color: white;
  }
  
  .container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .logo {
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #name {
    color: maroon;
    font-weight: bold;
  }
  
  #va {
    color: lightblue;
    font-style: italic;
    margin-left: 10px;
  }
  
  img[alt="voice"]{
    max-width: 100px;
    margin-bottom: 30px;
    display: none;
  }
  
  button {
    background: linear-gradient(135deg, maroon, darkblue);

    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  button i {
    margin-right: 10px;
    color: aqua;
  }
  
  button:hover{
   
     transform: scale(1.1);
  }
  
  #contant {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  