html {
    height: 100%;
    width: 100%;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&family=Russo+One&display=swap');
  
  
  
  :root{
    --primary-dark: #1F2937;
    --primary-green: #6EE7B7;
  }
  body{
    background-color: var(--primary-dark);
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
  }
  
  h1 {
    text-align: center;
    margin: 2rem;
  }
  .container{
    width: 60%;
    margin:auto;
  }
  input,label{
    display:block;
    margin:0.3rem;
  }
  
  input{
    margin-bottom: 0.5rem;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
  
  }
  
  #check-number{
    display: block;
    margin-top: 1rem;
    margin: auto;
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
    border-width: medium;
    padding: 0.5rem;
    border-radius: 0.3rem;
    margin-top: 1.5rem;
    transition: all 0.5s;
    cursor: pointer;
  }
  
  p{
    text-align: center;
    font-size: 20px;
  }
  
  .footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
    width: 100vw;
    bottom: 0px;
    position: fixed;
   
}

.footer-icon{
    font-size: medium;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.fa {
    display: flex;
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }

  /* Round Buttons */
  .fa {
    padding-top: 5px;
    padding-right: 20px;
    padding-left: 10px;
    width: 0px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    height: 0.2px;
  }
  
  /* Set a specific color for each brand */
  
  .fa-github {
    background: #3B5998;
    color: white;
  }
  
  .fa-linkedin {
    background: #55ACEE;
    color: white;
  }

  .fa-google {
    background: #dd4b39;
    color: white;
  }
  
  