*{
    font-family: 'Oswald', sans-serif
}

body{
    background-color: #F7A800;
}
.container{
    width: 400px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 50px;
    box-shadow: 10px 10px 5px 0 rgba(0,0,0, 0.75);
    height: 500px;
}
h1{
    margin-top: 0px;
    color: red;
    text-align: center;
}
p{
    color: #fff;
}
#height, #weight{
    width: 100%;
    height: 35px;
    outline: none;
    font-size: 18px;
}
button{
    width: 150px;
    height: 35px;
    margin-top: 25px;
    border-radius: 10px;
    border: none;
    background-color: red;
    color: white; 
    font-size: 20px;
    cursor: pointer;
}
button:hover{
    background: rgb(189, 6, 6);
    color: black;
}
#result{
    color:black;
    text-align: center;
    margin-top: 20px;
    font-size: 25px;
    background-color: #F7A800;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.info p{
    color: green;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    text-decoration: underline;
}
.info1,.info2,.info3,.info4{
    margin: 5px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}
.info1{
    color: red;
}
.info2{
    color: green;
}
.info3{
    color:red;
}
.info4{
    color:rgb(206, 8, 8);
}
@media(max-width:450px){
    .container{
        width:250px;  
}
#height, #weight{
    width: 90%;
    }
}