body{
    background: rgb(97,138,254,0.7);
}

.main{
    margin-top: 25px;
    background-color: rgb(240, 240, 240);
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 100px;
}

.title{
    text-align: center;
    opacity: 0.7;
    padding: 25px;
}

.input {
    background: #fff;
    box-shadow: 0px 0px 95px -30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: center;
}


.input label {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #545454;
    margin-bottom: 20px;
}
.input input {
    outline: none;
    border: none;
    /*border-bottom: 1px solid #4f7df9;*/
    width: 75%;
    text-align: center;
    font-size: 28px;
    font-family: "Nunito", sans-serif;
}
.gender-row{
    color: #545454;
}
.gender-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    background: #fff;
    box-shadow: 0px 0px 95px -30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px 0;
    margin-bottom: 20px;
}
.gender-container .inside{
    margin: 0;
}

.height-input,
.weight-input{
    margin-bottom: 20px;
}

.height-text,
.weight-text{
    background-color: white;
    color: #545454;
}

.button-container{
    margin-bottom: 20px;
}
#calculate{
    width: 100%;
    border-color: rgb(97,138,254);
    color: rgb(97,138,254);
}
#calculate:hover{
    color: white;
    background-color: rgb(97,138,254);
}

.result {
    padding: 10px 20px;
    text-align: center;
}
.result p {
    font-weight: 600;
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
}
.result #result {
    font-size: 36px;
    font-weight: 900;
    color: #4f7df9;
    background-color: #eaeaea;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 55px;
    margin-bottom: 25px;
}

.redirect-container{
    text-align: right;
}
.redirect{
    text-decoration: none;
    color: #646464;
    transition: color 0.15s;
}
.redirect:hover{
    color: #4f7df9;
}