* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: silver;
    width: 100%;
    margin-top: 10px;
}
/* Header */
h1 {
    width: 75%;
    margin: auto;
    text-align: center; 
    
/*    background-color: lightgray;
    border: 2px solid ;
    border-color: blue;
    border-radius: 20px; */   
}




/* Navigation */
nav {
    margin:auto ;
    margin-top: 10px;
    text-align: center;    
    display: flex;
}
#navMenu {
    width: 75%;
}
#logoBtn {
    width: 20%; 
}
#menu {
    width: 60%;
}
#loginBtn {
    width: 20%;
}
.menuBtn {
    width: 125px;
    height: 25px;
    border: 2px solid;
    border-radius: 20px;
    background-color: lightgray;
    border-color: blue; 
}
/* Body */
#container {
    margin: auto;
    margin-top: 20px;
    width: 75%;  
    height: 400px; 
    align-content: center;
}
#home {
    display: block ;
}
#webProjects {
    display: none ;
}
#warCommander {
    display: none ;    
}
#myProjects {
    display: none ;
}#login {
    display: none ;
}





#divBody {
    margin: auto;
    padding: 80px;
    padding-top: 40px;
    width: 75%;  
    height: 350px;  
    border: 2px solid;
    border-radius: 20px;
    background-color: lightgray;
    border-color: blue; 

}
#content {
    height: 100px;
    text-align: center;
}
#divFooter {
    text-align: center;
}


#loginText {
    visibility: hidden;

}



/* Footer */
#footer{
    margin: auto;
    width: 75%;  
    height: 30px;  
    margin-top: 20px;
    border: 2px solid;
    border-color: blue; 
    background-color: lightgray;
    border-radius: 20px;
    text-align: center;
}




#test {
    background-color: white;
    height: 60px;
    text-align: center;
    justify-content: center;

}
h2{
    text-align: center;
}
h2:before {
    
    content: "This is cool.";
    
    position: fixed;
    bottom: -2px;
    height: 30px;
    width: 310px;
    background: blue;
    border-radius: 50px;
    transform: scaleX(0);
    transition: transform 0.2s linear;
}
h2:hover:before{
    transform: scaleX(1);
} 