      @import url(default.css);
      
      body {
          background-color: #000;
      }
      
      .nav-content {
        top: 0;
        /*background-color: #E8E8E8AA;*/
      }
      
      small {
        font-size: 85%;
        color: #E8E8E8CC;
        font-weight: lighter;
      }
      

      footer {
        bottom: 0;
        padding: .8rem 3% 0 3%;
        background-color: #2E2E2EAA;
      }
      
      .nav-content, footer {
        position: fixed;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        height: 50px;
        margin: 0 auto;
        color: #FFFFFFCC;
        z-index: 10;
      }
    
      p:hover, .nav-content {
        text-decoration: none;
        color: #bbb;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
      }
    
      .background {
        height: 100%;
        color: #f8f8f8;
        background: url(../images/godlo_pl_b.svg) no-repeat center center;
        background-size: 30%;
        background-repeat: no-repeat;
      }
      
      .hide {
          opacity: 0;
      }

