/* 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 {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.polaroids {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.polaroids img {
  width: 200px;
  border: 10px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.polaroids img:hover {
  transform: rotate(0deg) scale(1.03);
}

img {
  width: 15px; /* Adjust this value */
  height: auto; /* Keeps the aspect ratio */
}