
body {
    margin: 0;
    background-color: #0a0f0d;
    font-family: 'Courier New', Courier, monospace;
    color: #00ff99;

}
.link-box {
  margin-top: 50px;
}

.custom-link {
  color: Green;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid green;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.custom-link:hover {
  background-color: Green;
  color: Green;
}

.hero {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    height: 40vh;
    background: url('hacker-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p.link {
    color: #00e6e6;
    font-weight: bold;
}

.clients {
    padding: 20px;
    background: #001f1f;
    text-align: center;
}

.clients img {
    height: 40px;
    margin: 0 30px;
}

.services {
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-list div {
    background-color: #002b2b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ff99;
}
.contact-box {
  background-color: #1e1e1e;
  color: #00ffcc;
  padding: 30px;
  max-width: 400px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffcc;
}

.contact-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item strong {
  display: inline-block;
  width: 100px;
}

.contact-item a {
  color: #00ffcc;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #001212;
    color: #00ff99;
}
