*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 100px;
   background-color: #f9f9f9;

}

h2{
    font-family: 'Poppins', sans-serif;
}
h3{
   font-family: 'Poppins', sans-serif;
   margin-bottom: 10px; 
}
p{
   font-family: 'Poppins', sans-serif;
   font-size: 11px; 
   color: gray;
}
.container{
    width: 80%;
    height: 600px;
    /* border: 1px solid black; */
    display: flex;
    
}
.first{
    width: 33.33%;
    height: 100%;
    /* border: 1px solid black; */
    padding: 20px;
    display: flex;
    align-items: center;

}
.second{
    width: 33.33%;
    height: 100%;
    /* border: 1px solid black; */
    padding: 20px;
    
}
.third{
     width: 33.33%;
    height: 100%;
    /* border: 1px solid black; */
    padding: 20px;
    display: flex;
    align-items: center;
}
.box1{
    width: 100%;
    height: 200px;
    /* border: 1px solid brown; */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}
.box1:hover{
    transition: 3s;
    transform: scale(1.1);
}

.top{
    margin-left: -28px;
    width: 122%;
    height: 3%;
    background-color: skyblue;
    border-radius: 100px;
    margin-top: -30px;
    margin-bottom: 25px;
    
}


.box2{
    width: 100%;
    height: 200px;
    /* border: 1px solid brown; */
    margin-bottom: 25px;
    margin-top: 75px;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.box2>.t1{
    margin-left: -28px;
    width: 122%;
    height: 3%;
    background-color: brown;
    border-radius: 100px;
    margin-top: -30px;
    margin-bottom: 25px;
}
.box2:hover{
    transition: 3s;
    transform: scale(1.1);
}


.box3{
    width: 100%;
    height: 200px;
    /* border: 1px solid brown; */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}
.box3>.t2{
    margin-left: -28px;
    width: 122%;
    height: 3%;
    background-color: orange;
    border-radius: 100px;
    margin-top: -30px;
    margin-bottom: 25px;
}
.box3:hover{
    transition: 3s;
    transform: scale(1.1);
}

.box4{
    width: 100%;
   height: 200px;
    /* border: 1px solid brown; */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.box4>.t3{
    margin-left: -28px;
    width: 122%;
    height: 3%;
    background-color: rgb(150, 150, 246);
    border-radius: 100px;
    margin-top: -30px;
    margin-bottom: 25px;
}
.box4:hover{
    transition: 3s;
    transform: scale(1.1);
}
