*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif, 'Times New Roman', serif;
}

body {
          min-height: 100vh;
          background-color:#096E2F;
      }
      
      body.disabled{
          position: fixed;
          height:100%;
          width:100%;
          z-index:-100;
          overflow-y: scroll;
          top:0;
          .page{
              pointer-events: none;
              user-select: none;
              touch-action: none;
          }
      }
      
      .page {
          z-index: 0;
      }
      
      .header{
          top:0;
          left: 0;
          width: 100%;
          padding: 30px 7% 25px 8%;
          display: flex;
          justify-content: space-between;
          align-items: center;
          color: darkgreen;
          z-index:100;
      }
      .header .social{
        color: darkgreen;
            
      }
      
      .navbar a{
          position: relative;
          font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, Georgia, Times, 'Times New Roman', serif;
          font-size: 20px;
          color: black;
          font-weight: 500;
          text-decoration: none;
          margin-left: 40px;
      }
      
      .navbar a::before{
          content: '';
          position: absolute;
          top:100%;
          left:0;
          width:0;
          height:5px;
          background:#0A79EF ;
          transition: .5s;
      }
      
      .navbar a:hover::before{
          width:100%;
      }

.background{
        position: fixed;
        width: 100%;
        height: 100vh;
        background-image: url('../images/wolfbg.webp');
        background-size: cover;
        background-position: center;
        z-index: -50;
    }
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}
.container .heading{
   width: 50%;
   padding-bottom: 20px;
}

.music{
    position: fixed;
    top:85%;
    left:80%;
    overflow: hidden;
    display: block;
    z-index: 100;
}


.container .heading h3{
    font-size: 4em;
    font-weight: bolder;
    margin-bottom: 20px;
    border-bottom: 3px solid #222;
}
.container .heading h3 span{
          font-weight: 100;
}
.container .box{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}
.container .box .game{
   display: flex;
   flex-direction: column;
   width: 32.5%;
}

.container .box .game img{
          width: 100%;
          height: auto;
          padding-bottom: 15px;
          border-radius: 5px;
          filter: grayscale();
          cursor: pointer;
          transition: .5s
       }

.container .box .game img:hover{
    filter: grayscale(0);
       }

.site_footer{
    position: bottom;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    color: darkgreen;
    text-align: center;
    font-size: 1.2em;
    font-weight: 100;
}
/* Deployment fixes: readable gallery navigation and mobile columns. */
.header { gap: 24px; flex-wrap: wrap; }
.social, .social a { color: #12341c; font-size: 16px; }
.navbar { display: flex; gap: 28px; }
.navbar a { margin-left: 0; }
.container .heading { width: min(100%, 700px); }
.container .heading h3 { font-size: clamp(2.2rem, 6vw, 4rem); }
.music { top: auto; left: auto; right: 16px; bottom: 12px; width: 320px; }
.site_footer { position: static; padding: 24px 20px 36px; color: #12341c; font-size: 16px; }
@media (max-width: 890px) { .music { display: none; } }
@media (max-width: 600px) {
  .header { padding: 24px 20px; }
  .container { margin-top: 12px; }
  .container .box { flex-direction: column; }
  .container .box .game { width: 100%; }
}
