@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

* {
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body,
html {
  color: bisque;
  background-color: rgb(168, 47, 66);
}

a {
  color: unset;
  text-decoration: none;
}

.imc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imc-logo img {
  width: 235px;
}

header {
  background: linear-gradient(180deg, white 30%, #25070f 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;

}

.imc-logo h1 {
  margin-top: 5;
  font-size: 24px;
}

.imc-logo p {
  margin-top: 0;
  font-size: 12px;
  font-weight: 300;
}

#imc-result-faixa {
  background-color: yellow;
  color: black;
}

#paragraph-result{
  margin-top: 15px;
  font-weight:bold;
}

#imc-result {
  background-color: yellow;
  color: black;
}

#result {
  font-weight: bold;
}

#input-weight {
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: 20px;
  width: 100px;
  height: 40px;
  text-align: center;
  
}

#input-height {
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: 20px;
  width: 105px;
  height: 40px;
  text-align: center;
}


.imc-card {
  background-color: #25070f;
  border-radius: 10px;
  padding: 30px 30px;
  margin-bottom: 20px;
}

.imc-container {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

#sales {
  padding: 40px 10px;

}

#label {
  margin-bottom: 20px;
}

#imc-result {
  visibility: hidden;
}

#button-calculate-imc {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: bold;
  color: black;
  font-size: 20px;
  
}

#imc-calcula-peso {
  font-weight:bold;;
}