body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 40%;
    padding: 2rem;
    text-align: center;
}

.title {
    font-size: 4rem;
    line-height: 1.2;
}

.story-image {
    display: inline-block;
    width: 100px;
    height: 120px;
    margin: 0 10px;
    border-radius: 16px;
    object-fit: cover;
    vertical-align: middle;
    transition: transform 0.5s ease;
}

.story-image:hover {
    transform: scale(1.7) rotate(3deg);
}

.story-image:nth-of-type(2):hover {
    transform: scale(1.6) rotate(-3deg);
}

.title span {
    display: inline-block; /* Allow transformations */
    font-size: 5rem; /* Adjust the size of the dots if needed */
    line-height: 1; /* Adjust line height for better alignment */
}



@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .story-image {
        width: 60px;
        height: 60px;
        margin: 0 5px;
    }
}