@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
:root {
  --primary-color: rgb(17, 86, 102);
  --primary-color-darker: rgb(9, 48, 56);
}

* {
    padding: 0px;
    margin: 0px;
}

body {
    background-color: #005663;
    font-family: 'Open-sans', sans-serif;
    line-height: 1.5em;
}

main {
    background-color: white;
    margin: auto;
    max-width: 640px;
    padding: 20px 20px 50px 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.37);
}
h1 {
    font-size: 2em;
    margin: 20px 0px 20px 0px;
}

aside {
    columns: 2;
    margin-top: 15px;
}

input {
    width: 100%;
    height: 40px;
    border: 1.3px solid rgba(95, 95, 95, 0.76);
    border-radius: 3px;
    padding-left: 7px;
}

input::placeholder {
    text-indent: 5px;
}

ul {
    margin-top: 10px;
    list-style-type: none;
}

p {
    margin: 20px 0px 10px 0px;
}

.resultado-imc {
    padding: 5px;
    color: black
}

button {
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    height: 50px;
    cursor: pointer;
    margin-top: 30px;
    width: 640px;
    border-radius: 5px;
  }

