body {
  font-family: Verdana;
  margin: 0;
  padding: 0;
}

a,a:hover,a:visited{
    color: inherit;
    text-decoration: none;
}

h1 {
  font-family: "Cabin Sketch", fantasy;
  font-size: 500%;
  font-style: normal;
  text-align: center;
  margin: 0;
}

h2 {
  font-family: "Yusei Magic","Cabin Sketch", sans-serif;
  font-style: normal;
  font-size: 180%;
  font-weight: 300;
  text-align: center;
  margin: 0;
  padding: 0;
  text-decoration: underline wavy palevioletred;
  -webkit-text-decoration: underline wavy palevioletred;
}

h2 a{
  text-decoration: underline wavy palevioletred;
  -webkit-text-decoration: underline wavy palevioletred;
  color: #000;
}

.top{
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}

.box {
  background-color: #fbfbf7;
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
}

.box img{
  width:90px;
  height:90px;
  margin:5px;
  object-fit: cover;
  display: block;
  }

.box p{
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-20%, -20%);
  font-family: serif;
  font-size: 10px;
  color: white;
  padding: 4px ;
  text-align: end;
  margin: 0;
}

.container {
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  width: 90%;
  padding: 10px 40px;
  text-align: center;
  margin: 15px auto;
}

.container p{
  font-size: 90%;
  text-align: left;
  }
  
.footer {
  font-size: 10px;
  color: #999;
  text-align: center;
  margin-top: 20px;
}

.footer a {
  color: #777;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
  
  
@media (max-width: 768px) {


  body {
    min-height: auto;
  }

  .container{
    border: none;
    box-shadow: none;
    padding: 15px;
  }

.xxx img{
   width: 90%;
   }
 
  
}  