/* Import fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Raleway:wght@400;700&display=swap");

/* Reset browser CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Raleway", sans-serif;
  line-height: 1.7em;
  color: #202030;
  background-color: #fdfffc;
  height: 100%;
  font-size: 14px;
  justify-content: center;
}

a {
  text-decoration: none;
  color: #f83b00;
}

h1,
h2,
h3 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  color: #202030;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 2.25em;
}

/* Container styles */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5px;
  overflow: hidden;
}

/* Button styles */
.btn {
  margin-top: 5px;
  padding: 10px 15px;
  background-color: #f83b00;
  color: #fdfffc;
  border: none;
  cursor: pointer;
  font-size: 1.125em;
}

.btn:hover {
  background-color: #202030;
}

/* Result styles */
#result {
  margin-top: 5px;
  padding: 10px;
}

/* Form label styles */
label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.125em;
}

/* Form input styles */
input,
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  font-size: 1.125em;
}

/* Fuel calculator styles */

.fuel-calc-container {
  display: flex;
  gap: 20px;
}

.fuel-calc-form {
  flex: 1;
}

.form-group {
  margin-bottom: 10px;
  margin-top: 15px;
}
