@import url('https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins&display=swap');
:root{
    --primary-color: #10b981;
}
body{
    font-family: 'Orbitron', sans-serif;
}
.container{
    display: flex;
    flex-direction: column;
    width: 40vw;
    text-align: center;
    row-gap: 1.5rem;
    margin: auto;
}
h1{
    margin-top: auto;
    font-size: 3rem;
    color: var(--primary-color);
}
p{
    font-family: 'Poppins', sans-serif;
    width: 25vw;
    margin: auto;
    margin-top: -2rem;
}
label{
    font-size: 1.8rem;
    font-weight: bold;
}
input{
    font-size: 1rem;
    border: 4px solid var(--primary-color);
    margin: auto;
    height: 2.5rem;
    margin-top: -1.2rem;
    width: 20vw;
    border-radius: 5px;
}
button{
    margin: auto;
    width: 8vw;
    height: 2.5rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: var(--primary-color);
    box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    outline: none;
    transition: 0.2s all;
}
button:hover{
    background-color: #d1fae5;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}
button:active{
    transform: scale(0.98);
    box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}

#note-table{
    border: 2px solid var(--primary-color);
}
.table-caption{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.return{
    color: red;
    font-weight: bold;
}

.table-data{
    font-family: 'Poppins', sans-serif;
    border: 2px solid var(--primary-color);
    width: 4rem;
    height: 3rem;
    font-size: 1.2rem;
}
.t-head{
    font-weight: bolder;
    font-size: 1.2rem;
    width: 5rem;
}
.notes{
    font-weight: 700;
    font-size: 1.4rem;
    color: red;
    background-color: #d1fae5;
}

.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4.5rem;
    background-color: #000000;
    justify-content: center;
  }
  .footer p{
    margin-top: 1rem;
    margin-bottom: auto;
    color: white;
    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: white;
    font-size: 1.2rem;
    transition: .2s;
  }
  .links .fa-brands:hover {
    color: var(--primary-color);
  }

  @media only screen and (max-width: 600px){
      .container{
        width: 95%;
      }
      h1{
          font-size: xx-large;
          margin-bottom: 2rem;
      }
      p{
          font-size: large;
          width: auto;
          margin-bottom: 2rem;
      }
      label{
          font-size: larger;
      }
      input{
          width: 50%;
      }
      button{
          font-size: larger;
          width: auto;
      }
      .table-caption{
          font-size: larger;
      }
      .t-head, .table-data{
          font-size: large;
      }
      .tbl{
          margin-bottom: 6rem;
      }
      .footer{
          height: auto;
      }
  }