/* style.css */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header, footer {
  background-color: #333;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
  display: none;
}


.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

.image-box {
    flex: 1 1 300px;
    max-width: 400px;
  }

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
  }

.image-box img:hover {
    transform: scale(1.05);
  }



.shex{
    size:40%;
}



    




button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background-color: #0077cc;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}










