pixelpond-gallery / style.css
BryKnight's picture
Show image
973b24f verified
raw
history blame contribute delete
366 Bytes
/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
max-width: 1200px;
}
img {
transition: transform 0.3s ease;
}
img:hover {
transform: scale(1.05);
}