* {
    box-sizing: border-box;
  }
  
  body {
    background-color: green;
    font-family: 'Muli', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
  }

  h3{
    color:white; 
    margin:10px 0 20px; 
  }

  
  textarea{
    border:none; 
    display:block; 
    width:100%; 
    height:100px; 
    padding:10px; 
    
    font-size:16px;
  }
  .tag{
    background-color: #f0932b; 
    color:#fff; 
    border-radius: 50px; 
    padding:10px 20px;
    font-size:14px; 
    display:inline-block;
  }

  .tag.highlight{
    background-color: rgb(24, 164, 80);
  }

  @media screen and (max-width:480px){
     h3{
        font-size:14px;
        transition: 0.4s ease-in-out;
     }
  }