/*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: 50px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
 }

 footer p{
    margin: 0;
 }

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

 /*Table*/
 table{
    width: 60%;
    border-collapse: collapse;
    margin: 20px;
    font-family: 'Times New Roman', Times, serif;
    margin: 20px auto;
 }
 thead{
    background-color: #7A5B01;
    font-weight: 600;
 }

 th{
    padding: 20px 15px;
 }

 /*showing of district and name*/
 #district{
    font-weight: bolder;
    color: rgb(188, 173, 173);
    position: relative;
    left: 275px;
    bottom: 55px;
    text-decoration: underline;
}
#diplayName{
    font-weight: bold;
    color: rgb(196, 172, 172);
    position: relative;
    top: 15px;
}

span{
   font-size: x-large;
   position: relative;
   font-weight: bolder;
}

.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;
 }