body{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(238, 156, 97);
}

form{
    background-color: rgb(6, 5, 5);
    padding: 20px;
    box-shadow: 0 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gender{
    display: flex;
    margin: 10px;
    color: white;
    font-size: 1.75rem;
}

.weight1{
    margin: 10px;
    color: white;
    font-size: 1.75rem;
}

.height1{
    margin: 10px;
    color: white;
    font-size: 1.75rem;
}

p{
    margin: 10px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#m,#f{
    height: 20px;
    width: 40px;
}

#weight,#height{
    height: 30px;
    width: 200px;
    border-radius: 1ch;
    border: none;
    padding-left: 10px;
}

button{
    margin: 10px;
    height: 40px;
    width: 70px;
    border-radius: 2ch;
    background-color: red;
    border: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

button:hover{
    box-shadow: 0 0 20px white;
}

