@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300&family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    width: 100;
    background-image: url(images/aaron.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
}
h2{
  text-align: center;
  margin-top: 40px;
}



.calculator {
    background-color:#007bff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 60%;
    margin-top: 30px;
    position:absolute ;
    top:30%;
    left: 20%;
  
  }
  
  .calculator h1{
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  label, input {
    display: block;
    margin-bottom: 10px;
    width: 70%;
    margin-right: 30px;
    padding: 10px;
  }
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  #result {
    margin-top: 20px;
  }
  .backlink{
    position: absolute;
    right: 0;
    top:0 ;
    color: #fff;
    
  }
  
  