body {
    background-color: #000; /* Dark background */
    color: #fff; /* Light text color */
    font-family: calibri, sans-serif;
    margin: 0;
    padding: 0;
}

.header h1 {
    text-align: center;
    /* padding: 20px;*/
}

.text p {
    text-align: center;
    padding: 0 20px;
}

.gallery {
    display: fit;
    justify-content: space-around;
    padding: 20px;
}

.gallery img {
    width: 40%;  /* Adjust size as needed */
    hight: auto;
    margin: 10px;
    /* border: 1px solid white;  Optional border */
}
a {
    color: rgb(145,192,248);
    text-decoration: none;
}
a:hover {
    color: red;
}
.figure {
    margin: 10px; /* Adjust as needed */
    text-align: center; /* Center the content */
}

figcaption {
    color: #fff; /* Caption text color */
    font-style: italic;
    margin-top: 5px; /* Spacing between image and caption */