/*Home Page--CSS*/
body{
    margin: 0;
    background-image: url("images\OIP.jpeg");
}

.home #particles-js{
    position: absolute;
    top: 0;left: 0;
    height: 100%;
    width: 100%;
}
header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.7rem 10%;
    height: 6.5rem;
    background-color: #00570a;
   
    
    
  }
    
.theme-btn {
    top: 5%;
    right: 3%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-grey-4);
    cursor: pointer;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease-in-out;
  }
  .theme-btn:active {
    transform: translateY(-3px);
  }
  .theme-btn i {
    font-size: 1.4rem;
    color: var(--color-grey-2);
    pointer-events: none;
  }



/*Navigation*/

header .navbar-nav{
    padding-right: 10px;
    padding-top:0 px;
    font-size: 0.2rem;
    color: #0E2431;
    font-weight: 200;
    text-decoration: none;
    letter-spacing: 0.04rem;
    transition: .2s;
    
}
header .collapse navbar-collapse{
    padding-right: 10px;
    padding-top:0 px;
    font-size: 0.2rem;
    color: #0E2431;
    font-weight: 200;
    text-decoration: none;
    letter-spacing: 0.04rem;
    transition: .2s;
    

}
header .nav-link{
    padding-left: 5px;
    font-size: 1.57rem;
    color: #0E2431;
    font-weight: 600;
     text-decoration: none;
    letter-spacing: 0.04rem;
    transition: .2s;

}

/*Poll Side*/

.poll-name{
    text-align: center;
    padding-top: 200px;
}

.rw1{
    padding-top: 150px;
    padding-bottom: 180px;
    text-align: center;
}

.cn{
    padding-bottom: 15px;
}
.btn{
    position: relative;
    background-color: #4CAF50;
    border: none;
    font-size: 28px;
    color: #FFFFFF;
    padding: 20px;
    width: 100px;
    text-align: center;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.btn:after {
    content: "";
    background: blue;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px!important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s
    
  }

  .btn:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
    
  }



  #footer{
      padding-top: 50px;
      padding-bottom: 50px;
      background-color: lightgreen;
      text-align: center;
  }

  .link-icon{
      color: black;
      font-size: 25px;
      padding-right: 10px;
  }


  .theme-btn {
    top: 5%;
    right: 3%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-grey-4);
    cursor: pointer;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease-in-out;
  }
  .theme-btn:active {
    transform: translateY(-3px);
  }
  .theme-btn i {
    font-size: 1.4rem;
    color: var(--color-grey-2);
    pointer-events:visible;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*list-style: none;*/
  }
  
  .dark-mode {
    
    --color-primary: #25272af9;
    --color-secondary: #27AE60;
    --color-white: #c8c3c3;
    --color-black: #2f2b2b;
    --color-grey0: #785e5e;
    --color-grey-1: #5a646e;
    --color-grey-2: #7ba6bb;
    --color-grey-3: #060709;
    --color-grey-4: #e9ecf0;
    --color-grey-5: #2a2e35;
    --color-grey-6: #12181b;
    --br-sm-2: 14px;
    --box-shadow-1: 0 3px 15px rgba(192, 184, 184, 0.3);
  
    
    
  }
  
  :root {
    --color-primary: #ffffff;
    --color-secondary: #ece1e4;
    --color-white: #454e56;
    --color-black: #e2dbdb;
    --color-grey0:var(--color-secondary);
    --color-grey-1: #6c7983;
    --color-grey-2: #6c7983;
    --color-grey-3: #6c7983;
    --color-grey-4: #454e56;
    --color-grey-5: #615a5a;
    --color-grey-6: #2e3132;
    
  }