.,html,body{
  margin:0;
  paddding:0;
  
}
header{
    background-color: powderblue;
    height: 112px;
    line-height: 50px;
}
ul{
    list-style: none;
}
ul li{
    display: inline-block;
}
header nav{
    float: right;
}
header nav ul li a{
    padding-right: 30px;
    font-weight: bold;
    color: rgb(28, 0, 128);
    transition: all 0.5s ease-in;
    text-decoration: none;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header nav ul li a:hover{
    color:goldenrod;
}


h1{
color:#80000b;
text-align: center;
background-color: skyblue;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.section h2{
    font-size: 30px;
    color:teal;
    text-align: center;
   text-align: center;
   font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   }
p{
    text-align: center;
    font-size: 21px;
    font-family: Georgia, serif;
}
hr{
    border: 2px solid teal;
    border-radius: 2px;
    text-align: centre;
    width: 500px;
  }


/* images of what we did */
.horizontal-snap {
    margin: 0 auto;
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
    height: calc(180px + 1rem);
    padding: 1rem;
    width: 480px;
    overflow-y: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }
  
  .horizontal-snap > a {
    scroll-snap-align: center;
  }
  
  .horizontal-snap img {
    width: 180px;
    max-width: none;
    object-fit: contain;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 /* services */
 
    .d{
        text-align: center;
    }
/* contact tab*/

  /* Style the submit button with a specific background color etc */
  button[type=button]{
    background-color:#3498db;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  button[type=button]:hover {
    background-color: goldenrod;
  }
  /* services*/
  body{
    margin: 0;
    padding: 0;
    font-family: "montserrat",sans-serif;
  }
  .services{
    background: powderblue;
    text-align: center;
  }
  .services h2{
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 4px solid #3498db;
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 40px;
  }
  .cen{
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
  }
  .service{
    display: inline-block;
    width: calc(100% / 3);
    margin: 0 -2px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.4s;
  }
  .service:hover{
    background: #ddd;
  }
  .service i{
    color: #3498db;
    font-size: 34px;
    margin-bottom: 30px;
  }
  .service h2{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
  }
  .service p{
    color: black;
    font-size: 15px;
    font-weight: 500;
  }
  @media screen and (max-width: 800px) {
    .service{
      width: 50%;
    }
  }
  @media screen and (max-width: 500px) {
    .service{
      width: 100%;
    }
  }
  