html {
    -webkit-text-size-adjust: 100%;   /* Prevent font scaling in landscape */
    }

body {
	max-width: 1024px;
	margin: 0px auto;
    padding: 10px;
    
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: black;
    color: white;
    } 


@media (min-width: 1024px) {     /* desktop size */
    
    .header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        }
            
    .header img {
        height: 80px;
        padding: 5px;
        }
            
    .header .McHall {
        padding: 0px 20px;
        font-weight: 800;
        font-size: 34px;
        }
    
    .navButton {
        display: none;    
    }
    
    .navBar {
        display: flex;
        justify-content: center;
        font-size: 18px;
        }

    .navLink {
        padding: 10px 14px;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        }
            
    .navDropdown {
        position: absolute;
        display: none;
        background-color: black;
        flex-direction: column;
        border-top-color: rgb(255, 195, 0);
        border-top-style: solid;
        border-top-width: 3px;
        z-index: 1;
        }
            
    .navLink:hover {
        color: rgb(255, 195, 0);
        }
    
    h1 {
	    text-align: center;
        font-size: 30px;
        background-color: rgb(255, 195, 0);
        color: black;
        padding: 10px;
        margin: 0px;
        }
    
    .footer {
        border-top: 5px solid rgb(255,195,0);
        padding-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
    }

    .footer img {
        width: 50px;
    }
    
}   /* end desktop size */



@media (max-width:1023px) {       /* mobile size */
    
    .header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        }
            
    .header img {
        height: 80px;
        padding: 5px;
        }
            
    .header .McHall {
        padding: 0px 20px;
        font-weight: 800;
        font-size: 34px;
        text-align: center;
        }
    
    .navButton {
        font-size: 18px;
    }
    
    .navBar {
        display: none;
        flex-direction: column;
        font-size: 18px;
        
        border-color: rgb(255, 195, 0);
        border-width: 3px 0px;
        
        transition-duration: .5s;
        }
    
    .navLink {
        padding: 10px 14px;
        text-decoration: none;
        color: inherit;
        display: block;
        cursor: pointer;
        }
            
    .navDropdown {
        padding-left: 30px;
        display: none;
        flex-direction: column;
        border-color: rgb(255, 195, 0);
        border-style: solid;
        border-width: 3px 0px;
        z-index: 1;
        transition-duration: .5s;
        }
    
    h1 {
	   text-align: center;
        font-size: 30px;
        background-color: rgb(255, 195, 0);
        color: black;
        padding: 10px;
        margin: 0px;
    }   
    
    .footer {
        border-top: 5px solid rgb(255,195,0);
        padding-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
    }

    .footer img {
        width: 50px;
    }
    
    /* .navLink:hover {
        font-weight: bold;
        color: rgb(255, 195, 0);
        }
            
    .navBox:hover .navDropdown {
        display: flex;
        }
    */

    
}   /* end mobile size */


