/* .itim-regular {
  font-family: Itim, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#container{
  height: 847px;
  width: 100%;
  background-color: aqua;
  padding: 120px 20px 0px 20px;
  background-image: url(/images/photo_2024-03-15_10-58-35.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#Welcomemessage{
  text-transform: capitalize;
  text-align: center;
  font-size: 60px;
  margin-bottom: 15px;
}
#subheading{
  text-transform: capitalize;
  text-align: center;
  font-size: 30px;
  margin-top: 10px;
}  */



*{
  margin: 0;
  padding: 0;
}
.container{
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: url(/images/enjoy.jpg) ;
  background-size: cover;
  height: 100vh;
}
.main-heading{
  color:#CFCFCF ;
  font-weight: 600;
  font-size: 2.7rem;
  margin-top: 8rem;
  text-shadow: 2px 2px 2px  black;
}
.second-heading{
  color:#CFCFCF ;
  font-size: 1.7rem;
  margin-top: 1.4rem;
  text-shadow: 2px 2px 2px  black;
}
.box-container{
  display: flex;
  gap: 6.5rem;
  margin-top: 7rem;
}
.box{
height: 27vh;
width: 12vw;
background-color: #9ACE56;
border-radius: 1rem;
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
justify-content: center;
cursor: pointer;
}
.box:hover{
  transform: scale(1.2);
  transform-origin: center center;
}
.box p{
  font-weight: bold;
font-size: 1.1rem;
text-align: center;
}
.box img{
  height: 4rem;
  width: 4rem;
  mix-blend-mode: multiply;
  /* margin-left: 3rem; */
  /* margin-top: 0.4rem; */
}
