28 lines
No EOL
553 B
CSS
28 lines
No EOL
553 B
CSS
body {
|
|
background-color: #161618;
|
|
}
|
|
|
|
a {
|
|
color: #f5a9b8;
|
|
}
|
|
|
|
a:visited {
|
|
color: #5BCEFA;
|
|
}
|
|
|
|
/* Container to hold the images */
|
|
.image-container {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
gap: 2px;
|
|
margin: 20px;
|
|
}
|
|
|
|
/* Each image inside the container */
|
|
.image-container img {
|
|
width: 100%;
|
|
max-width: 300px; /* Max width of each image */
|
|
height: auto; /* Ensure aspect ratio is maintained */
|
|
object-fit: contain; /* Ensure images fit within the container */
|
|
} |