* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  padding-top: 25px;
  padding-bottom: 25px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #c5c5c5;
  font-weight: bold;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.wraper {
  width: 98%;
  max-width: 800px;
  background-color: #333;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  color: white;
  font-size: 1.3rem;
  padding: 20px;
}

label {
  cursor: pointer;
}

input {
  height: 50px;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 15px;
  font-size: 1.5rem;
}
.fahrenheit-result-container,
.celsius-result-container {
  width: 98%;
  max-width: 800px;
}
.fahrenheit-result,
.celsius-result {
  min-height: 67px;
  background-color: #333;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  color: white;
  font-size: 1.5rem;
  padding: 20px;
}

.show-formula,
.show-working {
  width: 98%;
  max-width: 800px;
  display: flex;
  flex-flow: column nowrap;
}

.formula-button,
.working-button {
  padding: 15px 20px;
  outline: none;
  border: none;
  background-color: #333;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: left;
  border-radius: 5px;
  text-align: center;
}
.borders {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.formula-div,
.working-div {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  color: black;
  font-weight: bold;
  width: 100%;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: max-height 0.3s linear;
}
.formula-div *,
.working-div * {
  margin: 15px;
}
.open {
  max-height: 181px;
}
.formula-title,
.working-title {
  font-size: 1.5rem;
}
.formula-content,
.working-content {
  color: #333;
}
@media screen and (max-width: 425px) {
  .wraper {
    font-size: 13px;
  }
  .result {
    width: 17rem;
  }
  .fahrenheit-result,
  .celsius-result {
    min-height: 40px;
  }
  .formula-title,
  .working-title {
    font-size: 16px;
  }
}

@media screen and (man-width: 1000px) {
}
