* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
 max-height: 100vh;
  margin: 0;
  background: #EEAECA;
  background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

section{
display: flex;
  align-items: center;
  justify-content: center;
}

.input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 15px;

}

#input-fields {
   margin-left: 200px;
  width: 500px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  justify-items: center;
  align-items: center;
  margin-bottom: 20px;
}


 input {
  border: 2px solid black;
  color: #221515;
  height: 45px;
  width: 100px;
  margin: 5px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  border: none;
}


.btn-container{
  text-align: center;
}

.btn {
  padding: 10px 25px;
  background-color: rgb(22, 23, 23);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: rgb(2, 60, 60);
  color: #ffffff;
}


.highlight-max {
  background-color: #08f718 !important;
  color: white;
  font-weight: bold;
}

.highlight-min {
  background-color: #f54b07 !important;
  color: white;
  font-weight: bold;
}


