/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  font-family: "Times New Roman";
  background-image: url("background2.png");
}

.frame {
  width: 700px;
  margin: 60px auto;
  background-image: url("background1.jpg");
  padding: 30px;
  border-radius: 25px;
  border: 5px solid #524541;
 box-shadow:
  15px 15px 30px rgba(0,0,0,0.5),
  0px 0px 25px #B5A8A8;
  text-align: center;
}

.divider {
  width: 60%;
}
@font-face {
  font-family: "Caffe Latte";
  src: url("caffelatte.ttf");
}

.header-font {
  font-family: "Caffe Latte";
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.icon img {
  width: 120px;
  border-radius: 15px;
  transition: transform 0.2s;
}

.icon img:hover {
  transform: scale(1.1);
}

.icon p {
  margin-top: 8px;
  font-size: 14px;
}

.stamp-box {
  position: fixed;
  right: 40px;
  top: 120px;

  width: 180px;
  height: 500px;

  background-image: url("https://i.pinimg.com/originals/bc/80/02/bc8002ce2247e89a57258ad8155d7073.gif");
  border: 4px solid #524541;
  border-radius: 20px;
  padding: 10px;

  overflow-y: scroll;

display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.stamp-box::-webkit-scrollbar {
  display: none; /* Chrome, Edge, Safari */
}
.stamp-box img {
  width: 100%;
}

.stamp-box img:hover {
  transform: scale(1.05);
}











