*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    }


    #container{
        width: 100%;
        min-height: 100vh;
        position: relative;
        
       
     
    }  
    
    header{
        width: 100%;
        background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    }
    
    nav{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 2%;
        
        
    }
    
    nav .logo{
        width: 70px;
    }
    
    nav ul li{
        list-style: none;
        display: inline-block;
        margin-left: 20px;
        color: white;
        font-size: 18px;
     
        
    }
    
    nav ul li a{
        text-decoration: none;
        color: #fff;
        padding: 10px 10px;
        transition: all 0.5s;
        border: solid 2px;
        border-radius: 150px; 
       
    }
    
    nav ul li a:hover,
    nav ul li a:active{
        background: black;
        color: #fff;
       
    }


    .wrapper{

        height: 100vh;
        background-image: url(Files/background\ image.jpg);
        background-size:cover;

       }


    .bmical{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);

    }   


    .box{
        min-width: 400px;
        background: #FAFAFA;
        border-radius: 38px;
        text-align: center;
        position: relative; 
   
    }



    h1{
        font-weight: bold;
        font-size: 36px;
        padding-top: 18px;
        padding-bottom: 20px;
    }

    .content{
        padding: 0 40px;
    
    }

    .input{
        background: #fff;
        box-shadow: 0px 0px 166px -31px rgba(0, 0, 0, 0.15);
        border-radius: 28px;
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .input label{
        display: block;
        font-size: 18px;
        font-weight: 600;
        color: black;
        margin-bottom: 20px;
    }

    .input input{
    outline: none;
    border: none;
    border-bottom: 1px solid #4f7df9;
    width: 60%;
    text-align: center;
    font-size: 28px;
}

button#calculate{
    color: #fff;
    background: black;
    font-size: 16px;
    border-radius: 12px;
    padding: 12px 0;
    width: 100%;
    outline: none;
    border: none;
    transition: 0.5s;
}

button#calculate:hover{
    background-color: navy;
}



.result p{
    font-weight: 600;
    font-size: 22px;
    color: black;
    margin: 15px;
    
}

.outcome{
    font-size: 36px;
    font-weight: 900;
    color: blue;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 55px;
    margin-bottom: 25px;
}

#comment{
    color: blue;
    font-weight: 800;
}
    

    










footer{
    width: 100%;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    padding: 10px 2%;
    
    
   
    
}

.footy-row{
        
    display: flex;
    justify-content: space-between;
}

.footy-col{
    
  margin-right: 10px; 
    
}


.about{
    width: 60px;
}


p{
    color: black;
    margin-top: 2px;
}

.disclaimer{
    margin-top: 5px;
}


