html {
  box-sizing: border-box;
}

*, ::after, ::before {
  box-sizing: inherit;
}


body {
    font-family: Arial, sans-serif;
    /* background-color: #d4b4b4; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url("/images/money.jpg");
    background-repeat: no-repeat;
  }
  
  .converter {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
  }
  
  .converter__field {
    margin-bottom: 15px;
  }
  
  .converter__label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .converter__input {
    width: 100%;
    padding: 8px;
    font-size: 16px;
  }
  
  .converter__button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #6c2275;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .converter__button:hover {
    background-color: #a10967;
  }
  
  .converter__result {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: rgb(22, 185, 35);
  }
  
