@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

*{
    box-sizing: border-box;
}

body{
    font-family: 'Oswald', sans-serif;
    color:#222;
}

#wrapper{
    background-color: #ddd;
    }

#navbar{
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    background-color:black;
    display: block;
    width: 100%;
    z-index: 10;
}

#navbar nav{
     display: flex;
}


#navbar nav button {
    flex: 0 0 12vw ;
    text-align: center;
    font-size: 1.5em;
    color: #eee;
    text-decoration: none;
    height: 60px;   
    line-height: 1.8em;
    cursor: pointer;
    background-color:chocolate;
    border-radius: 10px;
    /* min-width:120px; */

}
#navbar nav button:hover{
    background-color:darkgreen;
    color: white;
}


.page{
    height: auto;
    min-height: 40vh;
    padding: 60px 10px;
    background-color: #eee;
 
}


.row {
    display: flex;
}

.col{
    flex:1;
    border: 1px solid #CCC;
    padding: 10px;
    border-radius: 10px;
 }



.main{
    background-color:white;    
    min-height: 10vh;
    padding: 10px;
    font-size: 1em; 
    text-align: center;
    border-radius: 10px;
}

.g3{
    background-color:bisque;  
    font-size: .8em; 
    text-align: left; 
    padding: 10px;
    border-radius: 10px;
}


.page > h2{
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid black;
    padding: 8px;
    font-size: 3em;


}

.footer{
    min-height: 80px;
    text-align: center;
    color: #ddd;
    font-size: .8em;
    padding: 5px;
    background-color: black;
}

/* .main::first-letter{
    font-size: 2em;
    color: black;
    text-transform: uppercase;
} */

@media all and (max-width:640px){
    #navbar nav .mm{
        font-size: .9em;
        height: 40px;
        padding: 2px;
    }
    #navbar{
        height: 40px;

    }
    .row {
        flex-direction: column; 
    }
    .g3{
        
        font-size: .6em; 
        
        padding: 8px;
    }
    #navbar nav button {
       min-width:80px;
    
    }

}