@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8bbd9 30%;
    min-height: 100dvh;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100svw;
    padding: 1rem;
    max-width: 1200px;
}
h1 {
    color: #e91e63;
    text-shadow: #e91e63 0 0px 10px;
}

.photos {
    column-count: 3;
    column-gap: 10px;
    .photo-item {
        margin-bottom: 10px;
        break-inside: avoid;
    }
    img {
        width: 100%;
        
        
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .photos {
        column-count: 2;
    }

}
