*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background-color: white;
}

.text {

    margin-top: 10px;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
    font-family: "Dosis", sans-serif;
    text-align: center;
  }
  
  .text {
    padding-top: 10px;
    width: 300px;
    height: 60px;
    border-radius: 50px;
    background-image: linear-gradient(135deg, #f5f4f4 0%, #ffffff 100%);
    box-shadow: 0 20px 30px -6px rgba(238, 228, 227, 0.5);
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: rgb(24, 22, 22);
  }
  
  .text:hover {
    transform: translateY(3px);
    box-shadow: none;
  }
  


.boxes{

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;

   
}
.box{
    width: 200px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.box img{
    width: 100%;
    height: 300px;
}

.para{
    padding: 16px;
}

.para p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
}

.box:hover{
    background-color: rgb(150, 236, 203);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}