*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgb(3, 1, 29);
}
.container {
    background-color: rgb(69, 67, 67);
    display: flex;
    color: white;
    padding: 10px;
    justify-content: space-between; 
  }
  .navbar {
    margin-left: 50px;
    display: flex;
   
    align-items: center; 
  }
  .navbar h1{
    font-size: 30px;
  }
  
a {
    font-weight: 500;
    margin: 0 10px; 

    font-size: 18px;
    text-decoration: none;
    color: white;
    display: inline;
  }
  .links {
    display: inline;
    margin-left: 850px;
  }
  .navbar a:hover{
    color: aqua;
    text-shadow: 0 0 20px aqua;
  }

  .big-boi{
    display: flex;
    
    justify-content: center;
    margin-top: 50px;
    /* background-color: aquamarine; */
  }
  .small-boi{
    width:1350px;
    height: 500px;
    /* background-color: blue; */
  }
  .mini-container{
    width: 400px;
    /* padding: 10px; */
    margin-top: 20px;
    height: 400px;
    /* border: solid 1px aqua; */
   box-shadow: 0 0 10px aqua;
   margin-left: 30px;
   background-color: rgb(36, 35, 35);
   display: inline-block;
   border-radius: 20px;
  }
i {
   color: rgb(255, 162, 0);
   font-size: 50px;
   border:aqua 3px solid;
   margin-top: 20px;
    margin-left: 150px;
    padding: 10px;
    border-radius: 100%;
  }
  .mini-container h1{
    text-align: center;
    margin-top: 10px;
    color: aqua;
  }
  .mini-container h4{
    text-align: center;
    color: rgb(169, 169, 169);
    font-style: italic;
    padding: 10px;
  }

  button{
    width: 120px;
    height: 40px;
    margin-top: 5px;
    outline: none;
    margin-left: 120px;
    border: aqua;
    background-color:aqua;
    border-radius: 30px;
  }
  button:hover{
  box-shadow: 0 0 10px aqua;
  scale: 1.1;
  }
  h3{
    color: white;
    text-align: center;
    margin-top: 40px;
    font-size: 40px;
  }
  span{
    color: aqua;
  }
  a.services{
    color: aqua;
    text-shadow: 0 0 20px aqua;
  }
  @media only screen and (max-width: 400px) {
    *{
      margin: 0;
      padding: 0;
    }
     .container {
       width: 465px;
      
     }
     .about {
       margin-left: 0px;
       margin-top: 50px;
       width: 370px;
       text-align: center;
       flex-direction: column; 
       text-align: center; 
     }
     .links{
       display: block;
     }
    .navbar{
      width: 100%;
      text-align: center;
      display: block;
      margin-left: 0px;
    }
     .navbar a {
       font-size: 15px;
       margin-left: 0px;
     }
     .links {
       margin-left: 0px;
       margin-top: 20px;
     }
    .big-boi {
        margin-top: 20px; /* Add some spacing */
         display: flex;
      }
    .mini-container {
        width: 90%; /* Adjust width */
        margin: 20px auto;
        margin-left: 50px; /* Center the container */
    }
    i {
      margin-left: 37%; /* Center the icon */
        margin-right: auto; /* Center the icon */
    }
    button {
        margin-left: 34%; /* Center the button */
        margin-right: auto; /* Center the button */
    }
    h3 {
        font-size: 30px; /* Adjust font size */
    }
}
