@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
    height: 100vh;
    background-color: blueviolet;
    font-family: poppins, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    border: 10px solid rgb(255, 255, 255);

}
h2{
color: white;
text-shadow: 2px 2px 10px black;
letter-spacing: 3px;
font-size: 2em;
}

.btn{
    font-weight: bold;
    margin: 30px;
    font-size: 20px;
    padding: 15px 30px;
    text-shadow: 2px 2px 10px black;
    box-shadow: 0 2px 10px rgb(14, 202, 223);
    border: 3px solid white;
    background: transparent;
    transition: 0.3s ease-in-out;
    color: white;
}
.btn:hover{
    transform: scale(0.9);
    cursor: pointer;
}

p {
    font-size: 3rem;
    margin:10px 0;
  }
  
  .js {
    color: yellow;
    font-weight: bold;
  }
  
  .typed-text {
    color: #ffffff;
    text-shadow: 2px 2px 10px rgb(87, 100, 188);
    font-weight: bold;

  }
  
  .cursor {
    background: #ffffff;
  }

  @media  screen and (max-width :780px) {
    p {
        font-size: 2rem;
      }
      
    
  }
  @media  screen and (max-width :420px) {
    p {
        font-size: 1.5rem;
      }
      
    
  }