/* pre nav stuff */
*{
    box-sizing: border-box;
}
.background{
    background-color: #000000 ;
}
/* nav bar */
nav{
background-color: #BB1D24;
border-radius: 5px;
justify-content: flex-start;
display: flex;
}
nav li{
    display: inline-flex;
    
    margin-left: 60px;
    color: #000000;
    border: 2px;
    border: 2px #ff6060 solid;
    padding: 6px;
    border-radius: 6px;
}
/* Nav psudo  */
nav li:first-child{
    margin-left: 0px;
    border: 0px;
    background-color: #BB1D24;

}
nav li:hover{
    color: #F5F5F1;
    font-size: large;
    background-color: #ff6060;
}
nav li:hover:first-child{
    color: #000000;
    border: 2px;
    font-size: initial;
    background-color: initial;
}

nav li:active{
    color:#ffa5a5;
    border: 4px;
}
nav li:active:first-child{
    color: #000000;
    border: 2px;
}
/* welcome text and image  */
.welcome-txt{
    color:#F5F5F1;
    text-align: center; 
}
.welcome-H1{
    margin-top: 150px;
}
.my-img{
    border: 10px solid #BB1D24;
   border-radius: 600px;
   margin-bottom: 100px;
}
/* about me section   */
.about-me{
    background-color:#BB1D24;
    display: flex;
    flex-direction: column;
    text-align:center;
    padding: 60px;
    margin: 0px 200px 0px 200px;
    border-radius: 30px;
    color: #F5F5F1;
}   
/* footer */
.footer{
    display: flex;
    background-color: #BB1D24;
    margin-top: 100%;
    justify-content: right;
    align-items: center;
}
.footer h2{
    display: flex;
}
.footer li{
    display: inline-flex;
    margin-right: 30px;
}
.footer li:last-child{
    margin-right: 10px;
}
.footer_img{
    width: 50px;
    height: 50px;
    border: 3px solid #BB1D24;
    border-radius: 300px;
}
.calculator_img {
    width: 40px;
    height: 50px;
    border: 3px solid #BB1D24;
    border-radius: 30px;
}
/* footer psudo  */
.footer_img:hover{
    border: 4px;
}
.footer_img:active {
    border: 6px;
}
.calculator_img:hover{
    border: 4px;
}
.calculator_img:active {
    border: 6px;
}