/* TESTING */

body {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  font-family: Arial, Helvetica, sans-serif;
  margin: auto;
}


.header {
  overflow: hidden;
  padding: 5px 50px;
}


.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-size: 20px;
  line-height: 25px;
  border-radius: 4px;
}


.header a.title {
  font-size: 35px;
  font-weight: bold;
}


.header a:hover {
  background-color: #ddd;
  color: black;
}


.header a.active {
  background-color: rgb(24, 118, 240);
  color: white;
}


.header-right {
  float: right;
}

h2 {
  text-align: center;
  padding: 2%;
}

h1 {
  font-size: 200%;
  font-weight: bold;
}


.logo {
  align-items: center;
  margin: auto;
}

#myForm {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto;
}

input[type=text],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}


input[type=submit] {
  width: 100%;
  background-color: blue;
  color: white;
  padding: 10px 20px;
  margin-top: 10px ;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

button[type=button] {
  width: 80%;
  background-color: blue;
  color: white;
  padding: 14px 10px;
  margin: px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 12%;
}

#myBMIinput {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 5%;
  margin-top: 5%;
  margin-left: 38%;
  margin-right: 38%;
}