
.polaroid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.polaroid {
    background: #fff;
    border: 0px solid #cccccc;
    padding: 10px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    margin: 10px;
    width: 190px;
}

.polaroid img {
    width: 100%;
    height: auto;
}

.polaroid:hover {
    transform: scale(1.05); /* Fica reto e aumenta ao passar o mouse */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.polaroid > a > p {
    text-align: left;
    font-family: "Marker Felt", sans-serif;
    color: black;
    margin: 6px;
}

.polaroid > a {
  color: inherit; /* Usa a cor do texto ao redor */
  text-decoration: none; /* Remove o sublinhado */
}