* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar > a,.i {
  color: rgb(241, 241, 241);
}
.navbar {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: white;
  width: 100%;
  height: 80px;
  background-color: rgb(32, 59, 86);
}
.navbar,
a {
  text-decoration: none;
}
a:hover {
  background-color: rgb(56, 56, 164);
}
.main-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: space-evenly;
  width: 100%;
  height: 1200px;
  margin-top: 1%;
}
.box {
  background-color: #ffffff;
  width: 360px;
  height: 440px;
  padding: 5%;
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  align-items: center;
}

img {
  width: 100%;
  height: fit-content;
}
img:hover{
   transform: scale(1.1);
   transition: 0.5s all;
}
h2{
   text-align: center;
}
button{
font-size: 14px;
   color: white;
margin-left: 130px;
padding: 10px;
background-color: darkblue;
}
p{
   text-align: center;
}
.Contact-1{
   position: relative;
   left: 770px;
   text-align: center;
   border-radius: 30px;
   border: 2px solid black;;
 
   width: 100%;
}