@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

body {
    background-color: gray;
    margin: 0;
}

.polaroid {
    background-color: white;
    width: calc(250px - 18px);
    height: calc(380px - 18px);
    padding: 16px;
    border-radius: 3px;

    margin: 5px;

    display: block;

    box-shadow: 0px 0px 10px rgba(0,0,0,0.5), inset 0px 0px 30px rgba(0,0,0,0.25);
}

.photo {
    width: calc(248px - 18px);
    aspect-ratio: 3 / 4;
    border-radius: 2px;
}

.writing {
    font-family: "Indie Flower", serif;
    font-weight: bolder;
    text-align: center;

    font-size: large;
    margin: 0;
}

.big {
    font-size: xx-large;
}

.photos {
    padding:10px;
    padding-top: 30px;
    padding-bottom: 30px;
    display:flex;
    flex-wrap: wrap;
    max-width: 100%;
    text-align: center;
    justify-content: center;

    overflow-x: hidden
}