* {
    box-sizing: padding-box;
    padding: 0;
    margin: 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
   img {
        fill: none;
        outline: none;
   }
}


body {
    
    background: linear-gradient(to right, #CCFED8, #94B9FF );
    font-family: 'Yu Gothic', sans-serif;
    padding: 0;
    margin: 0;
}

img {
      user-drag: none; 
      -webkit-user-drag: none; 
      -moz-user-drag: none; 
      fill: none;
      outline: none;
    }

.page-wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        nav, footer {
            width: 100%;
            background-color: #174AAD;
            color: #fff;
            text-align: center;
            
        }

        
        footer, nav { 
        position: relative; 
        align-items: center; 
        background-color: #174AAD; 
        color: #fff; 
        z-index: 99;
            
        }
        
        nav img, footer img { width: 100%; height: auto; }
        
        nav div:last-child, footer div:last-child { text-align: center; flex-grow: 1; display: flex; align-items: center; justify-content: center; 
            font-size: 30px;
            padding: 10px;
        }
        
        nav div, footer div {
            
            text-align: center;
        }
        
        nav div:first-child, footer div:first-child {
            
            position: absolute;
            top: 0;
            bottom: 0;  
            left: 0;
            width: 220px;
            vertical-align: middle;
            display: flex; align-items: center; justify-content: center; 
            padding: 0 20px;
            float: left;
        }
        
        
   
        
        .nav-text {
            display: flex;
            flex-direction: column;
        }
        
        
        
        
        ul {
            
           list-style: none;
           padding: 0;
           margin: 0;
          
        }
        
        

        
        
        
     @media (max-width: 768px) {
             
           
           
            
            nav, footer { 
                display: flex; 
                flex-direction: column;
                align-items: center; 
                color: #fff; 
                z-index: 99;
                    
                }
                
            nav img, footer img { width: 90%; height: auto; background: inherit; }
        
            
            nav div:first-child, footer div:first-child {
                vertical-align: middle;
                display: flex; align-items: center; justify-content: center; 
                padding: 5px;
                position: relative;
                margin: 0 50px;
                left: -7px;
                width: 100%
            }
            
            nav div:last-child, footer div:last-child {
                border-right: none;
                font-size: 18px;
            }
            
          
            
      
        }