/*Styling nav*/ 
  .nav{
background-color: #7A002F;
padding: 15px 0;
box-shadow: 0 4px 10px #7A002F;
  }
   .nav nav{
    display: flex;
    justify-content: center;
    gap: 40px;
   }
 .nav nav a{
     color: #DDCFCF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    text-decoration: none;
 }
  .nav nav a:hover{
    background-color: #FF3381;
  }

  /*Styling the header*/
   .header{
    display: flex;
    justify-content: right;
    background-color: #0F1D6C;
    padding: 20px;
    position: sticky;
    top: 0;
   }
    .header p{
        color:  #DDCFCF;
    }
     .header a{
        color:  #DDCFCF;
        text-decoration: none;
     }

     /*Body*/
     body{
        background-color:#52001F;
        color:  #DDCFCF;
        font-weight: 400;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
     }

   /*footer styling*/
 footer{
    background: linear-gradient(to right,#4e73df ,#1cc881 );
    color: white;
    padding: 20px 10px;
    margin-top: 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
 }

 footer p{
    margin: 0;
 }

 /*Footer hover*/
 footer:hover{
    opacity: 0.95;
 }
    

     /* Category box */
      .get-category{
         border: 2px dotted rgb(142, 81, 81);
         padding: 20px;
         width: 700px;
         height: 500px;
         margin: 40px auto;
         text-align: center;
         background-color: #C41C38;
         font-weight: 900;
         border-radius: 10px;
         overflow-y: auto;
      }

       .get-category p{
         margin: 210px auto;
         font-size: large;
         font-weight: bold;
         font-family: Georgia, 'Times New Roman', Times, serif;
       }

       /* User-card */
        .user-card{
         display: flex;
         flex-direction: column;
         gap: 20px;
         justify-content: flex-start;
        }

         .user-card h2{
            text-align: center;
            margin: 5px;
         }

          .user-card p{
            margin: 10px 0;
          }

          .container{
   display: grid;
   grid-template-rows: 80px auto 1fr auto 50px;
   grid-template-columns: 1fr 4fr 1fr;
   height: 100vh;
   grid-template-areas: 
   "header header header"
   "left-aside banner right-aside"
   "left-aside main right-aside"
   "left-aside low-content right-aside"
   "footer footer footer";
   grid-gap: 10px; padding: 10px;
   font-weight: 600; font-size: 20px;
 }

