body{
    background-color: #ecfdf5;
}
.container{
    width: 50vw;
    margin: auto;
    text-align: center;
    border: 2px solid black;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 1rem;
    background-color: #f7fee7;
}
h1{
    color: #bbf7d0;
    font-size: 4rem;
    text-shadow: 2px 2px 2px #15803d,-2px -2px 2px #15803d;
}
label{
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
input{
    display: block;
    font-size: 1.8rem;
    margin: auto;
    margin-bottom: 2rem;
    border: 3px solid #15803d;
    border-radius: 5px;
}
button{
    background-color: #bbf7d0;
    padding: 0.4rem 0.8rem 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 5px 6px 12px 1px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    outline: none;
    transition: 0.2s all;
    color: #15803d;
    border: 4px solid #15803d; 
    margin: 1rem;   
}
button:hover{
    background-color: #15803d;
    color: #bbf7d0;
    border: 4px solid #bbf7d0;
}
button:active{
    transform: scale(0.98);
    box-shadow: 3px 2px 8px 1px rgba(0, 0, 0, 0.24);
}
h2{
    color: red;
    font-size: 2rem;
    margin: 2rem 0px 2rem 0px;
}

.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5rem;
    background-color: #15803d;
    justify-content: center;

  }
  .footer p{
    margin-top: 1rem;
    margin-bottom: auto;
    color: #bbf7d0;
    font-size: 1rem;
    text-align: center;
  }
 
  .list-non-bullet {
    list-style: none;
    padding-inline-start: 0px;
    text-align: center;

  }
  
  .list-item-inlines {
    display: inline-block;
    width: 2rem;
    margin: auto;
  }
 
  .links .fa-brands{
    color: #bbf7d0;
    font-size: 1.2rem;
    transition: .2s;
  }
  .links .fa-brands:hover {
    color: red;
  }

  @media only screen and (max-width: 650px) {
    .container {
      width: 80%;
    }
    h1{
      font-size: xx-large;
      text-shadow: 1px 1px 4px #15803d,-1px -1px 4px #15803d;
    }
    label{
      font-size: larger;
    }
    input{
      font-size: larger;
    }
    .btn{
      font-size: larger;
      width: auto;
      padding: 2px 5px;
    }
    h2{
      font-size: larger;
    }
  }