/* ! Changing default styles of the browser */

.a{
    color: black;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: sans-serif;
  }
  i {
    cursor: pointer;
  }
  a {
    text-decoration: none;
    color: white;
  }
  
.body{
  width: 560px;
  height: 315px;
}  
.background{
 background-image: url('/images/BinaryWallPaper.png');
 width: auto;
 height: auto;

}
.shadow-button:hover{
    box-shadow: 10px 10px 3px rgb(192, 188, 188);
}
.shadow-button{
    font-size: large;
}
.ctrDiv{
    display: flex; 
    align-items: center; 
    text-align: center; 
    justify-content: center;  
}    
.service{
    background-image: url('/images/WebServicesCabbageKid.png');
    position: absolute;
    left: 10px;
    z-index: 1;
}
    
.serviceText{
    text-align: left;
    font-family: 'Gill Sans MT';
    font-size: large;
    background: rgb(236, 236, 222);
    padding: 1rem;
    margin-top: 2rem;
}
    
/* ! Navbar STyles are here */

.navbar {
    opacity: 0.8;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #212529;
    color: white;
    padding: 25px 60px;
    margin-bottom: 30px;
    z-index: 1;
    position: fixed; /*Add this line to lock the navbar from scrolling */
    top: 0; /* Optional: Set the navbar to the top of the viewport */
    left: 0; /* Optional: Set the navbar to the left of the viewport */
    width: 100%; /* Optional: Set the width to span the entire viewport */
  }
  .footer{
    color: white; font-family: arial; font-size: 12px;
    top: 60px; position: fixed; left: 60px;
    z-index: 1;  
  }
  
  /* ! Navbar STyles are here */