/*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;
     }
   
     /*Main styling*/
     main{
        padding: 80px;
        background-color: white;
     }
     main h1{
        display: flex;
        justify-content: center;
     }

/*Form container*/
 .form{
    border: solid rgb(222, 203, 203) 2px;
    box-shadow:0 3px 3px 3px #DDCFCF;
    background-color: #DDCFCF;
    color: black;
    padding: 20px;
    width: 350px;
    border-radius: 10px;
 } 

 /*Form heading*/
  .form h3{
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
    color: black;
  }

  /*form-group*/
   .form-group{
    margin-bottom: 15px;
   }

   /*Labels*/
    .form-group label{
        font-style: italic;
        font-weight: 800;
    }

    /*Submit button*/
    button{
        width: 100%;
        padding: 15px;
        background-color:#AEB8C2;
    }

    button:hover{
        background-color: green;
    }
 /*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;
 }

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