body {
  background: #0a0f1c;
  color: #e4e8ff;
  background-image: url('https://img.freepik.com/free-photo/cyber-security-concept-digital-art_23-2151637760.jpg?w=360'); 
  background-size: cover; 
  height: 100%;
  width: 100%;
  color: #e0f7ff;
  margin: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Courier New', monospace;
}

.main{
  background: rgba(0, 30, 60, 0.7);
  color: #001f2f;
  padding: 50px 20px;
  margin: 10px;
}

h2 {
  font-size: 50px;
  margin-bottom: 5px;
  color: #ffffff;
}

h4 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #7ed1e6;
}


p {
  font-size: 15px;
  color: #d0f0ff;
  margin-bottom: 30px;
}

.buttons{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  color: #041131;
  background: #00f0ff33;
  justify-content: center;
  font-weight: bold;
}

.buttons a{
  text-decoration: none;
  margin: 10px 15px;
  padding: 12px 25px;
  color: #041131;
  background: #9bf8ff;
  border-radius: 8px;
}

.buttons a:hover {
  background: #0ac4e1;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  h2 {
    font-size: 8vw;
  }
  h4 {
    font-size: 5vw;
  }
  p {
    font-size: 4vw;
  }
  .gif img {
    width: 70vw;
    max-width: 250px;
  }
  .banner {
    padding: 5% 3%;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 10vw;
  }
  h4 {
    font-size: 6vw;
  }
  p {
    font-size: 5vw;
  }
  .gif img {
    width: 80vw;
    max-width: 200px;
  }
  .buttons {
    width: 100%;
    flex-direction: column; 
    gap: 12px;
    align-items: center;
  }

  .buttons a {
    width: 80%;       
    max-width: 250px; 
    padding: 0.8rem 0;
    font-size: 1rem;
  }
}
