*{
  margin: 0;
padding: 0;
box-sizing: border-box;
overflow-x: hidden;
}

.head_shop{
margin: auto;
font-size: 40px;
text-shadow: 6px 3px 3px rgba(0, 0, 0, 0.17);
}

.main_shop{
display: flex;
flex-direction: column;
justify-content: center;
}

.intro{
display: flex;
height: 500px;
background-color: rgb(215, 215, 215);
margin-top: 35px;
border: 1px solid #7b7a7a45;
border-radius: 57px;
justify-content: center;
margin-bottom: 22px;
margin-inline: 10px;
box-shadow: 0 2px 9px rgba(0, 0, 0, 0.4);
}

.intro_mid{
display: flex;
background-color: white;
width: 93%;
margin-block: 29px;
border: 2px solid #979696a3;
border-radius: 35px;
box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.4);
flex-direction: column;
}

.intro_mid p{
display: flex;
justify-content: center;
text-align: justify;
margin-inline: 50px;
margin-top: 30px;
height: 64%;
font-size: 20px;
}

.shop_btn{
height: 50px;
width: 130px;
margin: auto;
border: 2px solid transparent;
border-radius: 15px;
color: #f5e9e9;
background-color: rgb(244, 96, 96);
font-size: 20px;
transition: all 0.4s ease-in-out;
text-decoration: none;
display: flex;
justify-content: center;
align-items: center;
}

.shop_btn:hover{
cursor: pointer;
background-color: white;
color: rgb(244, 96, 96);
transform: scale(1.2);
border: 2px solid rgb(244, 96, 96);
}