@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');

body{
    text-align: center;
    margin: 0;
    padding: 20px;
}

.calculator {
    background-color:#007bff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 70%;
    margin-top: 30px;
    position:absolute ;
    top:20%;
    left: 15%;
  
  }
  
  .calculator h1{
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  label, input {
    display: block;
    margin-bottom: 5px;
    width: 50%;
    margin-right: 30px;
    padding: 10px;
    position: relative;
    left: 23%;
  }
  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;
    font-weight: bold;
}

@media (max-width: 600px) {
    label, input {
        width: 100%;
        margin: 10px 0;
    }

    button {
        width: 100%;
    }
}
.backlink{
    position: absolute;
    right: 0;
    top:0 ;
    color: #fff;
    
  }
  