@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  background-color: #b9c5d5;
  font-family: "Merriweather", serif;
}
/* @font-face{

} */
h1 {
  margin: 50px;
  display: flex;
  justify-content: center;
  font-size: 3rem;
}
p {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.image-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.img-div span {
    /* color: red; */
    margin-left: 35%;

    margin-bottom: 20px;
  
}
img {
  height: 150px;
  border-radius: 34px;

  margin: 20px;
  width: 180px;
}
/* button css */
.btn-div {
  width: 100%;
  text-align: center;
  margin-top: 25px;
}
button {
  background-color: #6fbed7;
  margin-left: auto;
  margin-right: auto;
  border: none;
  padding: 0.5rem;
  font-size: 1rem;
  width: 6em;
  border-radius: 0.5rem;
  color: rgb(242, 241, 241);
  box-shadow: 0 0.4rem #dfd9d9;
  cursor: pointer;
}

button:active {
  color: white;
  box-shadow: 0 0.2rem #dfd9d9;
  transform: translateY(0.2rem);
}

button:hover:not(:disabled) {
  background: lightcoral;
  color: white;
  text-shadow: 0 0.1rem #bcb4b4;
}

button:disabled {
  cursor: auto;
  color: grey;
}
