 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      
    }

    body {
      background: #f5f7fa;
      line-height: 1.6;
	  font-family: "Space Mono", monospace;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    header {
      background: #111;
      color: #fff;
      padding: 15px 0;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav a {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
    }

    #menu-toggle {
      display: none;
      font-size: 22px;
      background: none;
      border: none;
      color: white;
    }

    .hero {
      background: linear-gradient(135deg, #3a7bd5, #00d2ff);
      color: white;
      padding: 80px 0;
      text-align: center;
    }

    .hero h2 {
      font-size: 2.5rem;
    }

    .hero button {
      margin-top: 20px;
      padding: 10px 20px;
      border: none;
      background: #fff;
      color: #333;
      cursor: pointer;
      border-radius: 5px;
	  transition:0.5s ease;
    }
 .hero button:hover{
      background:#000;
	  color:#fff
    }

    section {
      padding: 40px 0;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 20px;
    }

    .card {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    .card button {
      margin-top: 10px;
      padding: 8px 12px;
      border: none;
      background: #3a7bd5;
      color: white;
      cursor: pointer;
      border-radius: 5px;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: #111;
      color: white;
      margin-top: 40px;
    }
	.proxieslist{
	  text-align:center;
	}
	
    .proxieslist a{
	  font-size:20px;
	}
     #features h2{
	   text-align:center
	 }
	 .logo{
		 text-decoration: none;
    color: #fff;
    font-size: 28px;
	 }
	 
.proxieslist{
		 width:500px;
		 float:left
}		
.adareas{
	width:320px;
	padding:10px;
	 float:left
}
	 
	 
.clear{
	clear:both
}	 
	 
/***************************************************************************/	
@media(max-width: 1280px) {
.proxieslist{
		 width:460px;
		 float:left
}		
.adareas{
	width:300px;
	padding:10px;
	 float:left
}




}

@media(max-width: 1195px) {
.proxieslist{
		 width:360px;
		 float:left
}		
.adareas{
	width:300px;
	padding:10px;
	 float:left
}
.proxieslist a {
    font-size: 17px;
}



}
@media(max-width: 1060px) {
.proxieslist{
		 width:100%;
		 
}		
.adareas{
	width:100%;
}
.proxieslist a {
    font-size: 17px;
}



}
 
/***************************************************************************/	 
@media(max-width: 768px) {
      .grid {
        grid-template-columns: 1fr;
      }
.proxieslist a {
    font-size: 15px;
}
      nav {
        /*display: none;*/
        flex-direction: column;
        background: #111;
        position: absolute;
       top: 16px;
        right: 13px;
        padding: 10px;
      }

      nav a {
        margin: 10px 0;
      }

      nav.active {
        display: flex;
      }
/*
      #menu-toggle {
        display: block;
      }*/
    }
  